Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

515.1543 Compatibility #1217

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions code/modules/admin/view_variables/debug_variable_appearance.dm
Original file line number Diff line number Diff line change
Expand Up @@ -59,25 +59,23 @@ GLOBAL_DATUM_INIT(pluto, /atom/movable, new /atom/movable(null))
if(beloved.vars.Find(var_name)) // If datums have it, get out
return FALSE
// If it is one of the two args on /image, yeet (I am sorry)
if(var_name == NAMEOF(src, realized_overlays))
if(var_name == "realized_overlays")
return FALSE
if(var_name == NAMEOF(src, realized_underlays))
if(var_name == "realized_underlays")
return FALSE
// Filtering out the stuff I know we don't care about
if(var_name == NAMEOF(src, x))
if(var_name == "x")
return FALSE
if(var_name == NAMEOF(src, y))
if(var_name == "y")
return FALSE
if(var_name == NAMEOF(src, z))
if(var_name == "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))
if(var_name == "contents")
return FALSE
#endif
if(var_name == NAMEOF(src, loc))
if(var_name == "loc")
return FALSE
if(var_name == NAMEOF(src, vis_contents))
if(var_name == "vis_contents")
return FALSE
return ..()

Expand Down
Loading