From b4bef7bec8c28a735e9e1c3a59399298fb395e90 Mon Sep 17 00:00:00 2001 From: Adri <33333517+Miraviel@users.noreply.github.com> Date: Thu, 21 Sep 2023 16:00:42 +0200 Subject: [PATCH] [s] Fixes an infinite sand/ORM exploit with grass tiles and shovels (#22525) * Fixes an infinite sand exploit with grass tiles * Readds shovel functionality --------- Co-authored-by: Miraviel --- code/game/turfs/simulated/floor/fancy_floor.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/turfs/simulated/floor/fancy_floor.dm b/code/game/turfs/simulated/floor/fancy_floor.dm index 3ef9491677c8..35b710b4f065 100644 --- a/code/game/turfs/simulated/floor/fancy_floor.dm +++ b/code/game/turfs/simulated/floor/fancy_floor.dm @@ -68,10 +68,9 @@ if(..()) return if(istype(C, /obj/item/shovel)) - new /obj/item/stack/ore/glass(src, 2) //Make some sand if you shovel grass to_chat(user, "You shovel the grass.") playsound(src, 'sound/effects/shovel_dig.ogg', 50, 1) - make_plating() + remove_tile() /turf/simulated/floor/grass/jungle name = "jungle grass"