Skip to content

Commit

Permalink
Makes the confusion symptom tolerable (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy committed Sep 11, 2024
1 parent 8e4c309 commit 375fc83
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions monkestation/code/modules/virology/disease/symtoms/stage3.dm
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,12 @@ GLOBAL_LIST_INIT(disease_hivemind_users, list())
stage = 3
badness = EFFECT_DANGER_HINDRANCE
max_multiplier = 5
max_chance = 15
symptom_delay_min = 1
symptom_delay_max = 5

/datum/symptom/confusion/activate(mob/living/carbon/mob)
to_chat(mob, span_notice("You have trouble telling right and left apart all of a sudden."))
mob.adjust_confusion(1 SECONDS * multiplier)
to_chat(mob, span_warning("You have trouble telling right and left apart all of a sudden!"))
mob.adjust_confusion_up_to(1 SECONDS * multiplier, 20 SECONDS)

/datum/symptom/groan
name = "Groaning Syndrome"
Expand Down

0 comments on commit 375fc83

Please sign in to comment.