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:
Roxy
2026-03-29 20:22:48 -04:00
committed by The Sharkening
parent cbce70cf3e
commit 2d426b3f46
@@ -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)