From 064aea26041c6eedaf0b12fbedab03ef66342d34 Mon Sep 17 00:00:00 2001 From: Fikou <23585223+Fikou@users.noreply.github.com> Date: Thu, 12 Jan 2023 19:13:16 +0100 Subject: [PATCH] fixes chisels (#72632) ## About The Pull Request chisels used to only work when clicking on away stuff mothblocks broke them and made them only work on close stuff fixes that ## Why It's Good For The Game yippe ## Changelog :cl: qol: fixes chisels /:cl: --- code/modules/art/statues.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/art/statues.dm b/code/modules/art/statues.dm index 426978b1422..ad4f3ccc933 100644 --- a/code/modules/art/statues.dm +++ b/code/modules/art/statues.dm @@ -330,7 +330,7 @@ Moving interrupts // We aim at something distant. /obj/item/chisel/afterattack(atom/target, mob/user, proximity_flag, click_parameters) . = ..() - if(!proximity_flag) + if(proximity_flag) return . if (!sculpting && prepared_block && ismovable(target) && prepared_block.completion == 0)