Bad habit of pushing things before the compile.

This commit is contained in:
Ghommie
2019-11-14 15:10:32 +01:00
parent 358db4f390
commit 7603db2e8b
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
/obj/item/clothing/gloves/ComponentInitialize()
. = ..()
RegisterSignal(src, COMSIG_COMPONENT_CLEAN_ACT, .proc/clean_blood)
RegisterSignal(src, COMSIG_COMPONENT_CLEAN_ACT, atom.proc/clean_blood)
/obj/item/clothing/gloves/clean_blood(datum/source, strength)
. = ..()
+1 -1
View File
@@ -23,7 +23,7 @@
/obj/item/clothing/shoes/ComponentInitialize()
. = ..()
RegisterSignal(src, COMSIG_COMPONENT_CLEAN_ACT, .proc/clean_blood)
RegisterSignal(src, COMSIG_COMPONENT_CLEAN_ACT, atom.proc/clean_blood)
/obj/item/clothing/shoes/suicide_act(mob/living/carbon/user)
if(rand(2)>1)
@@ -32,7 +32,7 @@
if(CONFIG_GET(flag/disable_stambuffer))
togglesprint()
RegisterSignal(src, COMSIG_COMPONENT_CLEAN_ACT, .proc/clean_blood)
RegisterSignal(src, COMSIG_COMPONENT_CLEAN_ACT, atom.proc/clean_blood)
/mob/living/carbon/human/ComponentInitialize()