This commit is contained in:
kevinz000
2020-06-12 18:39:45 -07:00
parent e2aab5c1a5
commit 9a08623308
+1 -1
View File
@@ -1,5 +1,5 @@
/// Checks if something is a BYOND object datatype rather than a primitive, or whatever's closest to one.
#define is_object_datatype(object) (object && !istext(object) && !isnum(object))
#define is_object_datatype(object) (object && !ispath(object) && !istext(object) && !isnum(object))
// simple is_type and similar inline helpers