Front End Update v1.0

This commit is contained in:
Paldiu
2023-01-26 19:30:35 -06:00
parent 4205be4aae
commit 940765176f
17 changed files with 358 additions and 48 deletions

View File

@ -13,7 +13,7 @@ public abstract class TPermission {
* @param allowConsole Whether to allow the command to be run anywhere, or only in game.
*/
public TPermission(String permission, String permissionMessage, boolean allowConsole) {
this.permission = permission;
this.permission = "traverse." + permission;
this.permissionMessage = permissionMessage;
this.allowConsole = allowConsole;
}