RPDs can now place disposals pipes on dense non-wall turfs (#2035)

This commit is contained in:
CitadelStationBot
2017-07-17 00:54:17 -07:00
committed by kevinz000
parent 7a0c43e492
commit 6f7e908c89
2 changed files with 6 additions and 2 deletions
+4
View File
@@ -9,12 +9,16 @@
//Turfs
#define isopenturf(A) (istype(A, /turf/open))
#define isindestructiblefloor(A) (istype(A, /turf/open/indestructible))
#define isspaceturf(A) (istype(A, /turf/open/space))
#define isfloorturf(A) (istype(A, /turf/open/floor))
#define isclosedturf(A) (istype(A, /turf/closed))
#define isindestructiblewall(A) (istype(A, /turf/closed/indestructible))
#define iswallturf(A) (istype(A, /turf/closed/wall))
#define ismineralturf(A) (istype(A, /turf/closed/mineral))