Change to Raxen in files.

This commit is contained in:
unurled 2021-12-14 10:02:57 +01:00
parent 5761aa5e79
commit a8e7312f45
4 changed files with 6 additions and 6 deletions

View file

@ -18,7 +18,7 @@ public class ReloadCommand implements TabExecutor {
public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String msg, @NotNull String[] args) {
if(sender instanceof Player) {
Player player = (Player) sender;
if(!player.hasPermission("elixium.reload.cmd")) {
if(!player.hasPermission("raxen.reload.cmd")) {
player.sendMessage(noPerms());
return true;
}

View file

@ -19,7 +19,7 @@ public class TestGuiCommand implements TabExecutor {
public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args) {
if(sender instanceof Player) {
Player player = (Player) sender;
if(player.hasPermission("elixium.test.gui.cmd")) {
if(player.hasPermission("raxen.test.gui.cmd")) {
player.openInventory(Bukkit.createInventory(null, 54, Component.text(color(args[0]))));
}
}