diff --git a/code/datums/diseases/advance/symptoms/dizzy.dm b/code/datums/diseases/advance/symptoms/dizzy.dm
index 7d2a5a3bc6..bb83582425 100644
--- a/code/datums/diseases/advance/symptoms/dizzy.dm
+++ b/code/datums/diseases/advance/symptoms/dizzy.dm
@@ -1,42 +1,38 @@
-/*
-//////////////////////////////////////
-
-Dizziness
-
- Hidden.
- Lowers resistance considerably.
- Decreases stage speed.
- Reduced transmittability
- Intense Level.
-
-Bonus
- Shakes the affected mob's screen for short periods.
-
-//////////////////////////////////////
-*/
-
-/datum/symptom/dizzy // Not the egg
-
- name = "Dizziness"
+/*
+//////////////////////////////////////
+
+Dizziness
+
+ Hidden.
+ Lowers resistance considerably.
+ Decreases stage speed.
+ Reduced transmittability
+ Intense Level.
+
+Bonus
+ Shakes the affected mob's screen for short periods.
+
+//////////////////////////////////////
+*/
+
+/datum/symptom/dizzy // Not the egg
+
+ name = "Dizziness"
desc = "The virus causes inflammation of the vestibular system, leading to bouts of dizziness."
- resistance = -2
- stage_speed = -3
- transmittable = -1
- level = 4
- severity = 2
+ resistance = -2
+ stage_speed = -3
+ transmittable = -1
+ level = 4
+ severity = 2
base_message_chance = 50
symptom_delay_min = 15
symptom_delay_max = 40
threshold_desc = "Transmission 6: Also causes druggy vision.
\
Stealth 4: The symptom remains hidden until active."
-
+
/datum/symptom/dizzy/Start(datum/disease/advance/A)
-<<<<<<< HEAD
- ..()
-=======
if(!..())
return
->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435)
if(A.properties["stealth"] >= 4)
suppress_warning = TRUE
if(A.properties["transmittable"] >= 6) //druggy
@@ -49,9 +45,9 @@ Bonus
switch(A.stage)
if(1, 2, 3, 4)
if(prob(base_message_chance) && !suppress_warning)
- to_chat(M, "[pick("You feel dizzy.", "Your head spins.")]")
+ to_chat(M, "[pick("You feel dizzy.", "Your head spins.")]")
else
to_chat(M, "A wave of dizziness washes over you!")
M.Dizzy(5)
if(power >= 2)
- M.set_drugginess(5)
\ No newline at end of file
+ M.set_drugginess(5)