diff --git a/code/datums/diseases/advance/symptoms/headache.dm b/code/datums/diseases/advance/symptoms/headache.dm
index 7317ecfb88..3a8c82beed 100644
--- a/code/datums/diseases/advance/symptoms/headache.dm
+++ b/code/datums/diseases/advance/symptoms/headache.dm
@@ -1,45 +1,41 @@
-/*
-//////////////////////////////////////
-
-Headache
-
- Noticable.
- Highly resistant.
- Increases stage speed.
- Not transmittable.
- Low Level.
-
-BONUS
- Displays an annoying message!
- Should be used for buffing your disease.
-
-//////////////////////////////////////
-*/
-
-/datum/symptom/headache
-
- name = "Headache"
+/*
+//////////////////////////////////////
+
+Headache
+
+ Noticable.
+ Highly resistant.
+ Increases stage speed.
+ Not transmittable.
+ Low Level.
+
+BONUS
+ Displays an annoying message!
+ Should be used for buffing your disease.
+
+//////////////////////////////////////
+*/
+
+/datum/symptom/headache
+
+ name = "Headache"
desc = "The virus causes inflammation inside the brain, causing constant headaches."
- stealth = -1
- resistance = 4
- stage_speed = 2
- transmittable = 0
- level = 1
- severity = 1
+ stealth = -1
+ resistance = 4
+ stage_speed = 2
+ transmittable = 0
+ level = 1
+ severity = 1
base_message_chance = 100
symptom_delay_min = 15
symptom_delay_max = 30
threshold_desc = "Stage Speed 6: Headaches will cause severe pain, that weakens the host.
\
Stage Speed 9: Headaches become less frequent but far more intense, preventing any action from the host.
\
Stealth 4: Reduces headache frequency until later stages."
-
+
/datum/symptom/headache/Start(datum/disease/advance/A)
-<<<<<<< HEAD
- ..()
-=======
if(!..())
return
->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435)
if(A.properties["stealth"] >= 4)
base_message_chance = 50
if(A.properties["stage_rate"] >= 6) //severe pain
@@ -61,4 +57,4 @@ BONUS
M.adjustStaminaLoss(25)
if(power >= 3 && A.stage >= 5)
to_chat(M, "[pick("Your head hurts!", "You feel a burning knife inside your brain!", "A wave of pain fills your head!")]")
- M.Stun(35)
\ No newline at end of file
+ M.Stun(35)