refactor: simplify Locations.java class

This commit is contained in:
bobby29831 2022-05-14 22:25:24 -05:00
parent 99d31ff71c
commit d6f1cce234

View file

@ -2,22 +2,17 @@ package net.tylermurphy.hideAndSeek.command.location.util;
public enum Locations { public enum Locations {
GAME("spawns.game", "GAME_SPAWN"), GAME("spawns.game"),
LOBBY("spawns.lobby", "LOBBY_SPAWN"), LOBBY("spawns.lobby"),
EXIT("spawns.exit", "EXIT_SPAWN"); EXIT("spawns.exit");
private final String path, message; private final String path;
Locations(String path, String message) { Locations(String path) {
this.path = path; this.path = path;
this.message = message;
} }
public String message() { public String message() {
return message; return this + "_SPAWN";
}
public String path() {
return path;
} }
public String path(String additive) { public String path(String additive) {