Merge pull request #3473 from Citadel-Station-13/upstream-merge-31809

[MIRROR] Cleans up some istypes not using helpers
This commit is contained in:
LetterJay
2017-10-18 07:37:43 -04:00
committed by GitHub
18 changed files with 26 additions and 24 deletions
@@ -263,7 +263,7 @@ GLOBAL_DATUM(necropolis_gate, /obj/structure/necropolis_gate/legion_gate)
if(falling || fallen)
return
var/turf/T = get_turf(src)
if(!istype(T, /turf/open/lava) && !istype(T, /turf/open/chasm)) //nothing to sink or fall into
if(!islava(T) && !ischasm(T)) //nothing to sink or fall into
return
var/obj/item/I
if(istype(AM, /obj/item))