Fixes maintenance drones not being able to travel through disposals (#10509)

This commit is contained in:
Jiří Barouš
2020-11-11 08:43:21 +01:00
committed by GitHub
parent 79753f7715
commit 4cdebb0821
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -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
+4
View File
@@ -0,0 +1,4 @@
author: Amunak
delete-after: True
changes:
- bugfix: "Maintenance drones can be disposaled again properly."