From d38a775a163924e2b2a356007a89d8fb43ef13f1 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Wed, 21 Jul 2021 21:33:46 -0700 Subject: [PATCH] Update tables_racks.dm --- code/game/objects/structures/tables_racks.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index d787d5d67f..c794dd811e 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -259,9 +259,9 @@ out += src var/obj/structure/table/other #define RUN_TABLE(dir) \ - T = locate(/obj/structure/table) in get_step(src, dir); \ - if(T) { \ - T.connected_floodfill_internal(out, processed); \ + other = locate(/obj/structure/table) in get_step(src, dir); \ + if(other) { \ + other.connected_floodfill_internal(out, processed); \ } RUN_TABLE(NORTH) RUN_TABLE(SOUTH)