From 59b97fbad0fcb2df09568dff9dcb9a555e0bacd5 Mon Sep 17 00:00:00 2001 From: HanSolo1519 <72716882+HanSolo1519@users.noreply.github.com> Date: Sat, 14 Oct 2023 17:07:12 -0400 Subject: [PATCH] Update floor.dm --- code/game/turfs/simulated/floor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index 0db2a618e7d..c4b29494c31 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -167,7 +167,7 @@ /turf/open/floor/proc/try_replace_tile(obj/item/stack/tile/T, mob/user, params) if(T.turf_type == type) return - if(user.a_intent = INTENT_HARM) + if(user.a_intent == INTENT_HARM) return var/obj/item/crowbar/CB = user.is_holding_item_of_type(/obj/item/crowbar) if(!CB)