diff --git a/src/main/java/com/nexia/core/utilities/chat/ChatFormat.java b/src/main/java/com/nexia/core/utilities/chat/ChatFormat.java index 3dc34075..cc4a11e6 100644 --- a/src/main/java/com/nexia/core/utilities/chat/ChatFormat.java +++ b/src/main/java/com/nexia/core/utilities/chat/ChatFormat.java @@ -39,7 +39,7 @@ public class ChatFormat { // Minecraft Chat Colours (but better) - public class Minecraft { + public static class Minecraft { public static TextColor dark_red = TextColor.fromHexString("#b51413"); public static TextColor red = TextColor.fromHexString("#ff2b1c"); diff --git a/src/main/java/com/nexia/minigames/games/duels/map/DuelsMap.java b/src/main/java/com/nexia/minigames/games/duels/map/DuelsMap.java index 40358d95..9308c477 100644 --- a/src/main/java/com/nexia/minigames/games/duels/map/DuelsMap.java +++ b/src/main/java/com/nexia/minigames/games/duels/map/DuelsMap.java @@ -37,7 +37,7 @@ public class DuelsMap { public static final DuelsMap PLAINS = new DuelsMap("plains", true, Items.GRASS_BLOCK, new EntityPos(-63.5, 80, -0.5, -90, 0), new EntityPos(64.5, 80, 0.5, 90, 0), new StructureMap(new Identifier("duels", "plains"), StructureMap.Rotation.NO_ROTATION, true, new BlockPos(0, 80, 0), new BlockPos(-78, -8, -59), true)); public static final DuelsMap EDEN = new DuelsMap("eden", false, Items.ALLIUM, new EntityPos(55, 80, 0, 90, 0), new EntityPos(-55, 80, 0, -90, 0), new StructureMap(new Identifier("duels", "eden"), StructureMap.Rotation.NO_ROTATION, true, new BlockPos(0, 80, 0), new BlockPos(-62, -7, -23), true)); public static final DuelsMap CASTLE = new DuelsMap("castle", false, Items.CRACKED_STONE_BRICKS, new EntityPos(0, 240, 25, -180, 0), new EntityPos(0, 240, -25, 0, 0), new StructureMap(new Identifier("duels", "castle"), StructureMap.Rotation.NO_ROTATION, true, new BlockPos(0, 238, 0), new BlockPos(-11, -4, -30), true)); - public static final DuelsMap BIGROOM = new DuelsMap("bigroom", true, Items.OAK_PLANKS, new EntityPos(-40.5, 80, 0.5, -90, 0), new EntityPos(41.5, 80, 0.5, 90, 0), new StructureMap(new Identifier("duels", "bigroom"), StructureMap.Rotation.NO_ROTATION, true, new BlockPos(0, 80, 0), new BlockPos(-50, -2, -65), true)); + public static final DuelsMap BIGROOM = new DuelsMap("bigroom", true, Items.OAK_PLANKS, new EntityPos(-40.5, 80, 0.5, -90, 0), new EntityPos(41.5, 80, 0.5, 90, 0), new StructureMap(new Identifier("duels", "bigroom"), StructureMap.Rotation.NO_ROTATION, true, new BlockPos(0, 80, 0), new BlockPos(-50, -16, -65), true)); public static final DuelsMap COLOSSEUM = new DuelsMap("colosseum", true, Items.GILDED_BLACKSTONE, new EntityPos(0.5, 80, 20.5, 180, 0), new EntityPos(0.5, 80, -19.5, 0, 0), new StructureMap(new Identifier("duels", "colosseum"), StructureMap.Rotation.NO_ROTATION, true, new BlockPos(0, 80, 0), new BlockPos(-35, -7, -31), true)); public static DuelsMap identifyMap(String name) {