Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Rename LegacySizedTemplates to BuiltInRoomTemplate
Browse files Browse the repository at this point in the history
  • Loading branch information
robotgryphon committed Feb 21, 2024
1 parent 5a9f605 commit 1763724
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
Expand All @@ -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);
}
Expand Down

0 comments on commit 1763724

Please sign in to comment.