Allows drones to open windoors by walking into them (#8655)

This commit is contained in:
Baa
2020-04-16 18:07:20 +02:00
committed by GitHub
parent fd130a3918
commit 71ebf5dd51
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -69,7 +69,7 @@
return
if (src.operating)
return
if (src.density && (!issmall(AM) || ishuman(AM)) && src.allowed(AM))
if (src.density && (!issmall(AM) || ishuman(AM) || isrobot(AM)) && src.allowed(AM))
open()
//secure doors close faster
var/time = check_access(null) ? 50 : 20
+4
View File
@@ -0,0 +1,4 @@
author: SpaceBaa
delete-after: True
changes:
- bugfix: "Fixed an issue where drones could not open windoors by walking into them."