From eaa84418c9d7df70c01122c15262a579a637742d Mon Sep 17 00:00:00 2001 From: Thalpy <48600475+ThalpySci@users.noreply.github.com> Date: Thu, 10 Oct 2019 07:17:22 +0100 Subject: [PATCH] Fixes compile errors --- code/modules/holiday/halloween/jacqueen.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/holiday/halloween/jacqueen.dm b/code/modules/holiday/halloween/jacqueen.dm index 2b09573826..6c2000f2e2 100644 --- a/code/modules/holiday/halloween/jacqueen.dm +++ b/code/modules/holiday/halloween/jacqueen.dm @@ -238,11 +238,11 @@ //doesn't work if(4) visible_message("[src] waves their arms around, \"You're cute little bumpkin, On your head is a pumpkin!\"") - if(H.head) - var/obj/item/W = H.head + if(C.head) + var/obj/item/W = C.head C.dropItemToGround(W, TRUE) var/jaqc_latern = new /obj/item/clothing/head/hardhat/pumpkinhead/jaqc - H.equip_to_slot(jaqc_latern, SLOT_HEAD, 1, 1) + C.equip_to_slot(jaqc_latern, SLOT_HEAD, 1, 1) if(5) visible_message("[src] waves their arms around, \"In your body there's something amiss, you'll find it's a chem made by my sis!\"") C.reagents.add_reagent("eigenstate", 30)