change cheat tab icons

This commit is contained in:
Sen 2025-06-30 15:07:36 +02:00
parent eed510250d
commit b801a47df6
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
2 changed files with 4 additions and 2 deletions

View file

@ -90,6 +90,8 @@ import common.util.Util;
public abstract class Items {
public static final ItemMonsterPlacer fox_spawner = get("fox_spawner");
public static final ItemNpcSpawner highelf_spawner = get("highelf_spawner");
public static final ItemDoor acacia_door = get("acacia_door");
public static final ItemFence acacia_fence = get("acacia_fence");
public static final ItemBlock acacia_fence_gate = get("acacia_fence_gate");

View file

@ -48,12 +48,12 @@ public enum CheatTab {
},
SPAWNERS("Mob & Itemspawner", false) {
protected Item getIconItem() {
return Items.wheat;
return Items.fox_spawner;
}
},
NPCS("NPC- und Charakterspawner", false) {
protected Item getIconItem() {
return Items.book;
return Items.highelf_spawner;
}
},
TOOLS("Werkzeug", false) {