From aa02d8c3931c77fcb8868a5fdd8017389843f2e6 Mon Sep 17 00:00:00 2001 From: Filatelele Date: Mon, 5 Feb 2024 01:53:04 +0300 Subject: [PATCH] fix(disposals): fixes disposal outlet's undefined behaviour --- code/modules/recycling/disposal.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 30d31ed4077..ba5e4c37e34 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -1594,7 +1594,7 @@ anchored = 1 var/active = 0 var/turf/target // this will be where the output objects are 'thrown' to. - var/mode = DISPOSALS_OFF + var/mode = 0 atom_flags = ATOM_FLAG_CLIMBABLE New()