From 1753d479712f62878ae71e270af93aff591cf822 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Fri, 8 Dec 2017 19:13:01 -0200 Subject: [PATCH] Fixes some issue with items and flesh to stone (#3945) Casting flesh to stone while someone was grabbing, or with other items in hands, the wizard caused some odd behavior, this pr should fix this by forcing the victim to drop anything they are holding in their hands when the wizard casts this spell. --- code/game/objects/structures/crates_lockers/closets/statue.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/structures/crates_lockers/closets/statue.dm b/code/game/objects/structures/crates_lockers/closets/statue.dm index f4022ded962..4906767552b 100644 --- a/code/game/objects/structures/crates_lockers/closets/statue.dm +++ b/code/game/objects/structures/crates_lockers/closets/statue.dm @@ -37,6 +37,9 @@ L.client.perspective = EYE_PERSPECTIVE L.client.eye = src + L.drop_r_hand() + L.drop_l_hand() + L.forceMove(src) L.sdisabilities |= MUTE health = L.health + 300 //stoning damaged mobs will result in easier to shatter statues