Turf Refactor, Part 1: Purging /turf/simulated/shuttle (#15454)

* Turf Refactor, Part 1: Purging /turf/simulated/shuttle

* everything but shuttle templates

* it is done

* titanium airlocks

* correcting multi-turfs
This commit is contained in:
Fox McCloud
2021-02-07 11:06:55 +00:00
committed by GitHub
parent 8542d8f087
commit aa86510c54
69 changed files with 7447 additions and 16321 deletions
-2
View File
@@ -269,8 +269,6 @@
/obj/item/areaeditor/proc/check_tile_is_border(var/turf/T2,var/dir)
if(istype(T2, /turf/space))
return BORDER_SPACE //omg hull breach we all going to die here
if(istype(T2, /turf/simulated/shuttle))
return BORDER_SPACE
if(get_area_type(T2.loc)!=AREA_SPACE)
return BORDER_BETWEEN
if(istype(T2, /turf/simulated/wall))
@@ -267,7 +267,7 @@ effective or pretty fucking useless.
to_chat(C, "<span class='danger'>The [src] will not work here!</span>")
/obj/item/teleporter/proc/tile_check(turf/T)
if(istype(T, /turf/simulated/floor) || istype(T, /turf/space) || istype(T, /turf/simulated/shuttle/floor) || istype(T, /turf/simulated/shuttle/floor4) || istype(T, /turf/simulated/shuttle/plating))
if(istype(T, /turf/simulated/floor) || istype(T, /turf/space))
return TRUE
/obj/item/teleporter/proc/dir_correction(mob/user) //Direction movement, screws with teleport distance and saving throw, and thus must be removed first