mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 22:19:30 +01:00
[MIRROR] Fixes absent spread_text instances [MDB IGNORE] (#17625)
* Fixes absent spread_text instances (#71386) ## About The Pull Request spread_text dictates the readout next to "type" on a health analyzer's output. It was absent from some special diseases (and also the common cold), leading to the field being blank on the analyzer results. ## Why It's Good For The Game Closes #71379. ## Changelog 🆑 spellcheck: Adds spread text to some diseases that lacked it. /🆑 * Fixes absent spread_text instances Co-authored-by: Rhials <Datguy33456@gmail.com>
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
severity = DISEASE_SEVERITY_MEDIUM
|
||||
disease_flags = CAN_CARRY|CAN_RESIST
|
||||
spread_flags = DISEASE_SPREAD_NON_CONTAGIOUS
|
||||
spread_text = "Organ failure"
|
||||
visibility_flags = HIDDEN_PANDEMIC
|
||||
bypasses_immunity = TRUE
|
||||
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
/datum/disease/cold
|
||||
name = "The Cold"
|
||||
desc = "If left untreated the subject will contract the flu."
|
||||
max_stages = 3
|
||||
cure_text = "Rest & Spaceacillin"
|
||||
cures = list(/datum/reagent/medicine/spaceacillin)
|
||||
agent = "XY-rhinovirus"
|
||||
viable_mobtypes = list(/mob/living/carbon/human)
|
||||
spreading_modifier = 0.5
|
||||
desc = "If left untreated the subject will contract the flu."
|
||||
spread_text = "Airborne"
|
||||
severity = DISEASE_SEVERITY_NONTHREAT
|
||||
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
cures = list(/datum/reagent/medicine/rezadone)
|
||||
disease_flags = CAN_CARRY|CAN_RESIST
|
||||
spread_flags = DISEASE_SPREAD_NON_CONTAGIOUS
|
||||
spread_text = "Organic meltdown"
|
||||
process_dead = TRUE
|
||||
|
||||
/datum/disease/decloning/stage_act(delta_time, times_fired)
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
severity = "Dangerous!"
|
||||
disease_flags = CAN_CARRY|CAN_RESIST
|
||||
spread_flags = DISEASE_SPREAD_NON_CONTAGIOUS
|
||||
spread_text = "Organ failure"
|
||||
visibility_flags = HIDDEN_PANDEMIC
|
||||
required_organs = list(/obj/item/organ/internal/heart)
|
||||
bypasses_immunity = TRUE // Immunity is based on not having an appendix; this isn't a virus
|
||||
|
||||
Reference in New Issue
Block a user