Files
Bubberstation/code/modules/client/preferences/migrations/human_tail_ears_migration.dm
Roxy 71e8119d05 Rename feature_human_ears and feature_human_tail (#93696)
## About The Pull Request

Despite what the code comments said we can rename them and we should
because they make no sense

## Why It's Good For The Game

The save file keys for cat features should have cat in the name and not
human

## Changelog
🆑
server: renamed feature_human_ears and feature_human_tail to
feature_cat_ears and feature_cat_tail respectively
/🆑
2025-10-31 15:59:11 -06:00

5 lines
276 B
Plaintext

/// Rename feature_human_tail and feature_human_ears to something not stupid
/datum/preferences/proc/migrate_felinid_feature_keys(list/save_data)
save_data["feature_cat_ears"] = save_data["feature_human_ears"]
save_data["feature_cat_tail"] = save_data["feature_human_tail"]