ifdefs out now removed mutable appearance vars (#86538)

Can't do it fully cause the min version isn't bumped up. Also uh, 1643
breaks MA new overrides so like, what can ya do
This commit is contained in:
LemonInTheDark
2024-09-08 15:22:19 -04:00
committed by GitHub
parent 99ee36f611
commit f54345607a
@@ -63,20 +63,6 @@ GLOBAL_DATUM_INIT(pluto, /atom/movable, new /atom/movable(null))
return FALSE
if(var_name == NAMEOF(src, realized_underlays))
return FALSE
// Filtering out the stuff I know we don't care about
if(var_name == NAMEOF(src, x))
return FALSE
if(var_name == NAMEOF(src, y))
return FALSE
if(var_name == NAMEOF(src, z))
return FALSE
// Could make an argument for these but I think they will just confuse people, so yeeet
#ifndef SPACEMAN_DMM // Spaceman doesn't believe in contents on appearances, sorry lads
if(var_name == NAMEOF(src, contents))
return FALSE
#endif
if(var_name == NAMEOF(src, loc))
return FALSE
if(var_name == NAMEOF(src, vis_contents))
return FALSE
return ..()