Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuken committed Oct 5, 2024
1 parent aaff424 commit ff8df52
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions core/src/mindustry/world/blocks/environment/StaticWall.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,11 @@ public void load(){
super.load();
int size = large.width / 2;
split = large.split(size, size);
for(var arr : split){
for(var reg : arr){
reg.scale = region.scale;
if(split != null){
for(var arr : split){
for(var reg : arr){
reg.scale = region.scale;
}
}
}
}
Expand Down

0 comments on commit ff8df52

Please sign in to comment.