From ea4cd378b0fe786f6e0536f7e671a2394e242e33 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Thu, 26 Jul 2018 21:43:27 -0700 Subject: [PATCH] Adds initialize returns that I forgot to add in the maploader fix PR --- code/modules/mob/living/carbon/human/interactive/prefabs.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/interactive/prefabs.dm b/code/modules/mob/living/carbon/human/interactive/prefabs.dm index 85824145019..cee716b66ec 100644 --- a/code/modules/mob/living/carbon/human/interactive/prefabs.dm +++ b/code/modules/mob/living/carbon/human/interactive/prefabs.dm @@ -2,7 +2,7 @@ TRAITS |= TRAIT_ROBUST TRAITS |= TRAIT_MEAN faction += "bot_angry" - ..() + return ..() /mob/living/carbon/human/interactive/friendly/Initialize(mapload) TRAITS |= TRAIT_FRIENDLY @@ -10,7 +10,7 @@ faction += "bot_friendly" faction += "neutral" functions -= "combat" - ..() + return ..() /mob/living/carbon/human/interactive/greytide/Initialize(mapload) TRAITS |= TRAIT_ROBUST @@ -21,4 +21,4 @@ targetInterestShift = 2 // likewise faction += "bot_grey" graytide = 1 - ..() \ No newline at end of file + return ..()