From 1763724418568e218e9723669822177c1de06102 Mon Sep 17 00:00:00 2001 From: Ted Senft Date: Wed, 21 Feb 2024 04:01:49 -0500 Subject: [PATCH] Rename LegacySizedTemplates to BuiltInRoomTemplate --- .../{LegacySizedTemplates.java => BuiltInRoomTemplate.java} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename core/src/main/java/dev/compactmods/machines/machine/{LegacySizedTemplates.java => BuiltInRoomTemplate.java} (92%) diff --git a/core/src/main/java/dev/compactmods/machines/machine/LegacySizedTemplates.java b/core/src/main/java/dev/compactmods/machines/machine/BuiltInRoomTemplate.java similarity index 92% rename from core/src/main/java/dev/compactmods/machines/machine/LegacySizedTemplates.java rename to core/src/main/java/dev/compactmods/machines/machine/BuiltInRoomTemplate.java index 933d6c4..7a1e245 100644 --- a/core/src/main/java/dev/compactmods/machines/machine/LegacySizedTemplates.java +++ b/core/src/main/java/dev/compactmods/machines/machine/BuiltInRoomTemplate.java @@ -8,7 +8,7 @@ /** * The pre-CM6 built-in room templates. One should not assume these templates are active at any time. */ -public enum LegacySizedTemplates { +public enum BuiltInRoomTemplate { EMPTY_TINY("tiny", 3, FastColor.ARGB32.color(255, 201, 91, 19)), EMPTY_SMALL("small", 5, FastColor.ARGB32.color(255, 212, 210, 210)), EMPTY_NORMAL("normal", 7, FastColor.ARGB32.color(255, 251, 242, 54)), @@ -19,7 +19,7 @@ public enum LegacySizedTemplates { private final ResourceLocation id; private final RoomTemplate template; - LegacySizedTemplates(String id, int size, int color) { + BuiltInRoomTemplate(String id, int size, int color) { this.id = new ResourceLocation(Constants.MOD_ID, id); this.template = new RoomTemplate(size, color); }