More floor stuff

This commit is contained in:
Anuken
2025-07-14 23:49:09 -04:00
parent c2f365a92c
commit fbd9a7c40a
8 changed files with 21 additions and 7 deletions
@@ -151,7 +151,7 @@ public class Floor extends Block{
if(autotileMidVariants > 1){
autotileMidRegions = new TextureRegion[autotileMidVariants];
for(int i = 0; i < autotileMidVariants; i++){
autotileMidRegions[i] = Core.atlas.find((i == 0 ? name + "-13" : name + "-mid-" + (i + 1)));
autotileMidRegions[i] = Core.atlas.find(i == 0 ? name + "-13" : name + "-mid-" + (i + 1));
}
}
}