Removes more sleeps from init (#17332)

* splits emotes into original (custom_emote) and automatic (automatic_custom_emote)

* no copy paste

* immunosuprizine touchup

* srcining
This commit is contained in:
Cameron Lennox
2025-03-16 18:11:04 +01:00
committed by GitHub
parent 8878a8ef49
commit 17ec1d700b
31 changed files with 154 additions and 145 deletions
+3 -3
View File
@@ -36,7 +36,7 @@
/datum/genetics/side_effect/genetic_burn/start(mob/living/carbon/human/H)
..()
H.custom_emote(VISIBLE_MESSAGE, "starts turning very red..")
H.automatic_custom_emote(VISIBLE_MESSAGE, "starts turning very red..", check_stat = TRUE)
/datum/genetics/side_effect/genetic_burn/finish(datum/weakref/WR)
if(..()) return
@@ -52,7 +52,7 @@
/datum/genetics/side_effect/bone_snap/start(mob/living/carbon/human/H)
..()
H.custom_emote(VISIBLE_MESSAGE, "'s limbs start shivering uncontrollably.")
H.automatic_custom_emote(VISIBLE_MESSAGE, "'s limbs start shivering uncontrollably.", check_stat = TRUE)
/datum/genetics/side_effect/bone_snap/finish(datum/weakref/WR)
if(..()) return
@@ -70,7 +70,7 @@
/datum/genetics/side_effect/confuse/start(mob/living/carbon/human/H)
..()
var/datum/gender/T = gender_datums[H.get_visible_gender()]
H.custom_emote(VISIBLE_MESSAGE, "has drool running down from [T.his] mouth.")
H.automatic_custom_emote(VISIBLE_MESSAGE, "has drool running down from [T.his] mouth.", check_stat = TRUE)
/datum/genetics/side_effect/confuse/finish(datum/weakref/WR)
if(..()) return