From 3ad71c0750c4944ccb623bc47502d682087e4847 Mon Sep 17 00:00:00 2001 From: Fikou <23585223+Fikou@users.noreply.github.com> Date: Sun, 29 May 2022 16:57:45 +0200 Subject: [PATCH] fixes airlock ai cut wires runtiming (#67362) * Fixes airlock wires mapping helper --- code/modules/mapping/mapping_helpers.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mapping/mapping_helpers.dm b/code/modules/mapping/mapping_helpers.dm index e6615eaa995..e2053966edc 100644 --- a/code/modules/mapping/mapping_helpers.dm +++ b/code/modules/mapping/mapping_helpers.dm @@ -147,9 +147,9 @@ if(24 to 30) airlock.panel_open = TRUE if(airlock.cutAiWire) - wires.cut(WIRE_AI) + airlock.wires.cut(WIRE_AI) if(airlock.autoname) - name = get_area_name(src, TRUE) + airlock.name = get_area_name(src, TRUE) update_appearance() qdel(src)