Remove unused Structure Sprites setting

The structureSprites toggle was only read by the toggle UIs themselves —
no rendering code ever consulted it. Drops the getter/setter from
UserSettings, both toggle rows (SettingsModal + UserSettingModal), and
the en.json keys. Other-language entries are left for Crowdin to reap.
This commit is contained in:
evanpelle
2026-05-28 14:54:43 -07:00
parent fc3d80ec73
commit 10bf2be102
4 changed files with 0 additions and 59 deletions
-8
View File
@@ -158,10 +158,6 @@ export class UserSettings {
return this.getBool("settings.specialEffects", true);
}
structureSprites() {
return this.getBool("settings.structureSprites", true);
}
darkMode() {
return this.getBool(DARK_MODE_KEY, false);
}
@@ -227,10 +223,6 @@ export class UserSettings {
this.setBool("settings.specialEffects", !this.fxLayer());
}
toggleStructureSprites() {
this.setBool("settings.structureSprites", !this.structureSprites());
}
toggleCursorCostLabel() {
this.setBool("settings.cursorCostLabel", !this.cursorCostLabel());
}