Update all tiles to use their given icon names and register with new name patterns with misc changes

This commit is contained in:
Soggy_Pancake 2026-03-14 13:56:35 -07:00
parent 6635d352dc
commit 4eaea8dc3f
51 changed files with 278 additions and 275 deletions

View file

@ -22,7 +22,7 @@ Icon *PoweredRailTile::getTexture(int face, int data)
void PoweredRailTile::registerIcons(IconRegister *iconRegister)
{
BaseRailTile::registerIcons(iconRegister);
iconPowered = iconRegister->registerIcon(getIconName() + L"_powered");
iconPowered = iconRegister->registerIcon(getIconName() + L"_on");
}
bool PoweredRailTile::findPoweredRailSignal(Level *level, int x, int y, int z, int data, bool forward, int searchDepth)