mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-13 17:14:47 +01:00
71e8119d05
## 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 /🆑
5 lines
276 B
Plaintext
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"]
|