diff --git a/Plugins/Mineplex.Core/src/mineplex/core/boosters/command/AddCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/boosters/command/AddCommand.java index edf175011..f7efe7c69 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/boosters/command/AddCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/boosters/command/AddCommand.java @@ -16,7 +16,7 @@ public class AddCommand extends CommandBase { public AddCommand(BoosterManager plugin) { - super(plugin, Rank.ALL, "add"); + super(plugin, Rank.DEVELOPER, "add"); } @Override diff --git a/Plugins/Mineplex.Core/src/mineplex/core/boosters/command/BoosterCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/boosters/command/BoosterCommand.java index 894d44304..65775fcef 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/boosters/command/BoosterCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/boosters/command/BoosterCommand.java @@ -15,7 +15,7 @@ public class BoosterCommand extends MultiCommandBase { public BoosterCommand(BoosterManager plugin) { - super(plugin, Rank.ALL, "booster"); + super(plugin, Rank.DEVELOPER, "booster"); AddCommand(new AddCommand(plugin)); } diff --git a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/AddCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/AddCommand.java index 9266d5e55..b9d5afda3 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/AddCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/AddCommand.java @@ -17,7 +17,7 @@ public class AddCommand extends CommandBase { public AddCommand(FountainManager plugin) { - super(plugin, Rank.ALL, "add"); + super(plugin, Rank.DEVELOPER, "add"); } @Override diff --git a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/FountainCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/FountainCommand.java index 470487ce8..555ad39d2 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/FountainCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/FountainCommand.java @@ -12,7 +12,7 @@ public class FountainCommand extends MultiCommandBase { public FountainCommand(FountainManager plugin) { - super(plugin, Rank.ALL, "fountain"); + super(plugin, Rank.DEVELOPER, "fountain"); AddCommand(new AddCommand(plugin)); AddCommand(new GuiCommand(plugin)); diff --git a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/GuiCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/GuiCommand.java index 097102ac0..3f8f80127 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/GuiCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/GuiCommand.java @@ -14,7 +14,7 @@ public class GuiCommand extends CommandBase { public GuiCommand(FountainManager plugin) { - super(plugin, Rank.ALL, "gui"); + super(plugin, Rank.DEVELOPER, "gui"); } @Override diff --git a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/ResetCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/ResetCommand.java index 40dac94bc..c72dff6cc 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/ResetCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/ResetCommand.java @@ -14,7 +14,7 @@ public class ResetCommand extends CommandBase { public ResetCommand(FountainManager plugin) { - super(plugin, Rank.ADMIN, "reset"); + super(plugin, Rank.DEVELOPER, "reset"); } @Override