From 4cdebb0821ddaebd46bf49e3829c48a986d11ec9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Barou=C5=A1?= Date: Wed, 11 Nov 2020 08:43:21 +0100 Subject: [PATCH] Fixes maintenance drones not being able to travel through disposals (#10509) --- code/modules/recycling/disposal.dm | 2 +- html/changelogs/amunak-dronefix.yml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100755 html/changelogs/amunak-dronefix.yml diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 96fc2bbc600..fe78ad274a6 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -227,7 +227,7 @@ return /// makes it so synths can't be flushed - if (istype(target, /mob/living/silicon/robot)) + if (isrobot(target) && !isDrone(target)) to_chat(user, SPAN_NOTICE("[target] is a bit too clunky to fit!")) return diff --git a/html/changelogs/amunak-dronefix.yml b/html/changelogs/amunak-dronefix.yml new file mode 100755 index 00000000000..2129e522400 --- /dev/null +++ b/html/changelogs/amunak-dronefix.yml @@ -0,0 +1,4 @@ +author: Amunak +delete-after: True +changes: + - bugfix: "Maintenance drones can be disposaled again properly."