From 6a447bc3a0ffb2a8ec4393ec606777443fc89b30 Mon Sep 17 00:00:00 2001 From: Rhials Date: Sun, 23 Oct 2022 00:43:16 -0400 Subject: [PATCH] Head pikes now drop their mounted heads upon destruction (#70720) * wow this doesnt look right * better idea --- code/game/objects/structures/headpike.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/headpike.dm b/code/game/objects/structures/headpike.dm index 000fac5a934..8b072b38d7f 100644 --- a/code/game/objects/structures/headpike.dm +++ b/code/game/objects/structures/headpike.dm @@ -63,11 +63,11 @@ return ..() /obj/structure/headpike/deconstruct(disassembled) - if(!disassembled) - return ..() - if(victim) + if(victim) //Make sure the head always comes off victim.forceMove(drop_location()) victim = null + if(!disassembled) + return ..() if(spear) spear.forceMove(drop_location()) spear = null