mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 20:45:28 +01:00
Fix mismatched parts toggle doing nothing (#5388)
## About The Pull Request It was me I broke it ## Why It's Good For The Game Unchecking this should actually hide mismatched parts ## Proof Of Testing Yes ## Changelog 🆑 fix: fixed mismatched parts toggle doing nothing /🆑
This commit is contained in:
@@ -340,7 +340,7 @@ GLOBAL_LIST_INIT(preference_entries_by_key, init_preference_entries_by_key())
|
||||
|
||||
/// Checks if this preference is relevant and thus visible to the passed preferences object.
|
||||
/datum/preference/proc/has_relevant_feature(datum/preferences/preferences)
|
||||
if(isnull(relevant_inherent_trait) && isnull(relevant_organ) && isnull(relevant_head_flag) && isnull(relevant_body_markings && isnull(relevant_mutant_bodypart))) // BUBBER EDIT ADDITION
|
||||
if(isnull(relevant_inherent_trait) && isnull(relevant_organ) && isnull(relevant_head_flag) && isnull(relevant_body_markings) && isnull(relevant_mutant_bodypart)) // BUBBER EDIT ADDITION
|
||||
return TRUE
|
||||
|
||||
return current_species_has_savekey(preferences)
|
||||
|
||||
Reference in New Issue
Block a user