Skip to content

Commit

Permalink
Toggle Commands syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ExceptedPrism3 committed Dec 27, 2022
1 parent ae86140 commit 59908ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ Fixes
[!] Reload command not reloading from the config
[!] Commands not working in console
[!] LiteBans table not auto deleting on Velocity instance
[!] Toggle Commands are no longer case sensitive

Changes
[*] Remade permissions which will log OP and NOT OP players until they're permitted with the exempt permission
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void perform(CommandSender commandSender, String[] args) {

if (args.length <= 3 && args[1].equalsIgnoreCase("spy")) {

final String args2 = args[2];
final String args2 = args[2].toLowerCase();

boolean isToggled;

Expand Down

0 comments on commit 59908ef

Please sign in to comment.