Merge pull request #6056 from mwerezak/dev-fixes

Fixes firedoors not opening
This commit is contained in:
Ccomp5950
2014-08-19 06:02:08 -05:00

View File

@@ -190,7 +190,7 @@
/obj/machinery/door/firedoor/open(var/forced = 0)
if (!forced)
if (stat & BROKEN|NOPOWER)
if (stat & (BROKEN|NOPOWER))
return //needs power to open unless it was forced
else
use_power(360)