Update aux_base.dm

This commit is contained in:
LetterJay
2017-12-30 13:33:15 -06:00
committed by GitHub
parent 10643a192e
commit 96358f62f2
-4
View File
@@ -140,9 +140,6 @@ interface with the mining shuttle at the landing site if a mobile beacon is also
to_chat(user, "<span class='warning'>This station is not equipped with an auxillary base. Please contact your Nanotrasen contractor.</span>")
return
if(!no_restrictions)
<<<<<<< HEAD
if(T.z != ZLEVEL_MINING)
=======
var/static/list/disallowed_turf_types = typecacheof(list(
/turf/open/lava,
/turf/closed/indestructible,
@@ -150,7 +147,6 @@ interface with the mining shuttle at the landing site if a mobile beacon is also
))
if(!is_mining_level(T.z))
>>>>>>> f2dbe5c... Replace explicit z-level checks with defines (#33829)
return BAD_ZLEVEL
var/colony_radius = max(base_dock.width, base_dock.height)*0.5
if(T.x - colony_radius < 1 || T.x + colony_radius >= world.maxx || T.y - colony_radius < 1 || T.y + colony_radius >= world.maxx)