Skip to content

Commit

Permalink
[MIRROR] Floor Viruses Return Unique IDs [MDB IGNORE] (#747)
Browse files Browse the repository at this point in the history
* Floor Viruses Return Unique IDs (#79840)

---------

Co-authored-by: SkyratBot <[email protected]>
Co-authored-by: Thlumyn <[email protected]>
  • Loading branch information
3 people authored Nov 20, 2023
1 parent 2bfc439 commit b52e506
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/datums/diseases/advance/floor_diseases/carpellosis.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
var/datum/reagent/cure = GLOB.chemical_reagents_list[cures[1]]
cure_text = cure.name

/datum/disease/advance/carpellosis/GetDiseaseID()
return "[type]"

/datum/disease/advance/carpellosis/stage_act(seconds_per_tick, times_fired)
. = ..()
if(!.)
Expand Down
3 changes: 3 additions & 0 deletions code/datums/diseases/advance/floor_diseases/gastritium.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
var/datum/reagent/cure = GLOB.chemical_reagents_list[cures[1]]
cure_text = cure.name

/datum/disease/advance/gastritium/GetDiseaseID()
return "[type]"

/datum/disease/advance/gastritium/stage_act(seconds_per_tick, times_fired)
. = ..()
if(!.)
Expand Down
3 changes: 3 additions & 0 deletions code/datums/diseases/advance/floor_diseases/nebula_nausea.dm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
var/datum/reagent/cure = GLOB.chemical_reagents_list[cures[1]]
cure_text = cure.name

/datum/disease/advance/nebula_nausea/GetDiseaseID()
return "[type]"

/datum/disease/advance/nebula_nausea/stage_act(seconds_per_tick, times_fired)
. = ..()
if(!.)
Expand Down

0 comments on commit b52e506

Please sign in to comment.