Skip to content

Commit 4d56bee

Browse files
Add washing machine button models
1 parent 21f7f58 commit 4d56bee

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/main/java/me/eccentric_nz/TARDIS/custommodels/keys/Button.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public enum Button {
3131
ARTRON(new NamespacedKey(TARDIS.plugin, "button_artron")),
3232
AUTONOMOUS_PREFERENCES(new NamespacedKey(TARDIS.plugin, "button_auto_prefs")),
3333
BACK(new NamespacedKey(TARDIS.plugin, "button_back")),
34+
BLEACH(new NamespacedKey(TARDIS.plugin, "button_bleach")),
3435
CANCEL(new NamespacedKey(TARDIS.plugin, "button_cancel")),
3536
CHAMELEON(new NamespacedKey(TARDIS.plugin, "button_chameleon")),
3637
CHARACTER(new NamespacedKey(TARDIS.plugin, "button_character")),
@@ -82,6 +83,7 @@ public enum Button {
8283
TRANSMAT(new NamespacedKey(TARDIS.plugin, "button_transmat")),
8384
TWA(new NamespacedKey(TARDIS.plugin, "button_twa")),
8485
TYPE(new NamespacedKey(TARDIS.plugin, "button_type")),
86+
WASH(new NamespacedKey(TARDIS.plugin, "button_wash")),
8587
ZERO(new NamespacedKey(TARDIS.plugin, "button_zero"));
8688

8789
private final NamespacedKey key;

src/main/java/me/eccentric_nz/TARDIS/rooms/debug/DebugGUI.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,8 @@ public class DebugGUI {
195195
new GuiPreview(Material.BUCKET, Button.DELETE.getKey(), "bucket_delete"),
196196
new GuiPreview(Material.BUCKET, Button.DEACTIVATE.getKey(), "bucket_deactivate"),
197197
new GuiPreview(Material.BUCKET, Button.REMOVE.getKey(), "bucket_remove"),
198+
new GuiPreview(Material.CAULDRON, Button.BLEACH.getKey(), "button_bleach"),
199+
new GuiPreview(Material.CAULDRON, Button.WASH.getKey(), "button_wash"),
198200
new GuiPreview(Material.CHERRY_LEAVES, RoomVariant.GARDEN.getKey(), "room_garden"),
199201
new GuiPreview(Material.CHISELED_QUARTZ_BLOCK, RoomVariant.GALLERY.getKey(), "room_gallery"),
200202
new GuiPreview(Material.CHEST, RoomVariant.SMELTER.getKey(), "room_smelter"),

0 commit comments

Comments
 (0)