small cleanup

This commit is contained in:
Sen 2025-06-21 20:44:42 +02:00
parent 3079a4bb67
commit 8a87f32678
Signed by: sen
GPG key ID: 3AC50A6F47D1B722

View file

@ -254,8 +254,8 @@ public abstract class ItemRegistry {
for(BlockButton button : BlockButton.BUTTONS) {
registerBlock(button, new ItemButton(button));
}
for(int z = 0; z < BlockTNT.TNTS.length; z++) {
registerBlock(BlockTNT.getByPower(z), new ItemBlock(BlockTNT.getByPower(z)).setColor(TextColor.RED));
for(BlockTNT tnt : BlockTNT.TNTS) {
registerBlock(tnt, new ItemBlock(tnt).setColor(TextColor.RED));
}
for(BlockFlower flower : BlockFlower.FLOWERS) {