From d75cd41ba267cf8bd0c34fd0079d3e0d18846e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B8=D1=80=D0=BE=D1=82=D0=BA=D0=B0?= <114731039+ErdGinalD@users.noreply.github.com> Date: Thu, 23 May 2024 03:57:22 +0300 Subject: [PATCH] RCD now build floor on chasms instead of wall (#25432) * RCD now build floor on chasms instead of wall * yeah, this is work --- code/game/mecha/equipment/tools/work_tools.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/mecha/equipment/tools/work_tools.dm b/code/game/mecha/equipment/tools/work_tools.dm index f6a33da3af4..c4d9484ad1f 100644 --- a/code/game/mecha/equipment/tools/work_tools.dm +++ b/code/game/mecha/equipment/tools/work_tools.dm @@ -254,7 +254,7 @@ qdel(target) playsound(target, usesound, 50, 1) if(MECH_RCD_MODE_WALL_OR_FLOOR) - if(isspaceturf(target)) + if(isspaceturf(target) || ischasm(target)) var/turf/space/S = target occupant_message("Building Floor...") if(do_after_cooldown(S))