bentobox/src/main/java/us/tastybento/bskyblock/Constants.java
Tastybento c916bbf827 Automated code cleanup.
Removes spaces, adds {} to if statements, etc.
2018-02-08 20:08:46 -08:00

34 lines
1.1 KiB
Java

package us.tastybento.bskyblock;
/**
* All the plugin constants are here
* @author Tastybento
*/
public class Constants {
// ----------------- Constants -----------------
// Game Type BSKYBLOCK or ACIDISLAND
public enum GameType {
BSKYBLOCK, ACIDISLAND, BOTH
}
/*
public static final GameType GAMETYPE = GameType.ACIDISLAND;
// The spawn command (Essentials spawn for example)
public static final String SPAWNCOMMAND = "spawn";
// Permission prefix
public static final String PERMPREFIX = "acidisland.";
// The island command
public static final String ISLANDCOMMAND = "ai";
// Admin command
public static final String ADMINCOMMAND = "acid";
*/
public static final GameType GAMETYPE = GameType.BSKYBLOCK;
// Permission prefix
public static final String PERMPREFIX = "bskyblock.";
// The island command
public static final String ISLANDCOMMAND = "island";
// The spawn command (Essentials spawn for example)
public static final String SPAWNCOMMAND = "spawn";
// Admin command
public static final String ADMINCOMMAND = "bsadmin";
}