diff --git a/code/modules/clothing/suits/wiz_robe.dm b/code/modules/clothing/suits/wiz_robe.dm index 63044cbc20f..9dd5ba70745 100644 --- a/code/modules/clothing/suits/wiz_robe.dm +++ b/code/modules/clothing/suits/wiz_robe.dm @@ -220,7 +220,7 @@ usr.say("Rise, my creation! Off your page into this realm!", forced = "stickman summoning") playsound(loc, 'sound/magic/summon_magic.ogg', 50, TRUE, TRUE) - var/mob/living/M = new /mob/living/basic/stickman(get_turf(usr)) + var/mob/living/M = new /mob/living/basic/stickman/lesser(get_turf(usr)) M.faction += list("[REF(usr)]") robe_charge = FALSE sleep(3 SECONDS) diff --git a/code/modules/mob/living/basic/ruin_defender/stickman.dm b/code/modules/mob/living/basic/ruin_defender/stickman.dm index 115b1df1bda..40be390ab1c 100644 --- a/code/modules/mob/living/basic/ruin_defender/stickman.dm +++ b/code/modules/mob/living/basic/ruin_defender/stickman.dm @@ -22,6 +22,10 @@ ai_controller = /datum/ai_controller/basic_controller/stickman +/mob/living/basic/stickman/lesser + maxHealth = 25 + health = 25 + /mob/living/basic/stickman/Initialize(mapload) . = ..() new /obj/effect/temp_visual/paper_scatter(get_turf(src))