Merge pull request #22732 from ChangelingRain/gatefix

You actually have to make the Ark on the station
This commit is contained in:
oranges
2017-01-06 09:59:23 +13:00
committed by GitHub
@@ -39,7 +39,7 @@
return FALSE
var/area/A = get_area(invoker)
var/turf/T = get_turf(invoker)
if(!T || T.z != ZLEVEL_STATION || istype(A, /area/shuttle))
if(!T || T.z != ZLEVEL_STATION || istype(A, /area/shuttle) || !A.blob_allowed)
invoker << "<span class='warning'>You must be on the station to activate the Ark!</span>"
return FALSE
if(clockwork_gateway_activated)