Fixed packing issues

This commit is contained in:
Anuken
2021-11-16 23:10:49 -05:00
parent 82eb3a9159
commit 7798bb6702
5 changed files with 6 additions and 2 deletions

View File

@@ -78,7 +78,8 @@ public class DrawTurret extends DrawBlock{
}
/** @return the generated icons to be used for this block. */
public TextureRegion[] icons(Turret block){
@Override
public TextureRegion[] icons(Block block){
return top.found() ? new TextureRegion[]{base, block.region, top} : new TextureRegion[]{base, block.region};
}
}