remove 512 version checks

This commit is contained in:
vuonojenmustaturska
2018-04-11 22:24:47 +03:00
committed by CitadelStationBot
parent 4063781baf
commit d559fc1bd3
6 changed files with 2 additions and 49 deletions
-7
View File
@@ -2,14 +2,7 @@
#define islist(L) (istype(L, /list))
#if DM_VERSION >= 512
#define in_range(source, user) (get_dist(source, user) <= 1 && (get_step(source, 0)?:z) == (get_step(user, 0)?:z))
#if DM_VERSION > 512
#warn Remove this check.
#endif
#else
#define in_range(source, user) (get_dist(source, user) <= 1)
#endif
#define ismovableatom(A) (istype(A, /atom/movable))