Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Commit

Permalink
Change -> renamed '/neoprotect debugPing' to '/neoprotect debugTool'
Browse files Browse the repository at this point in the history
  • Loading branch information
EinfacheSache committed Jul 13, 2023
1 parent 7da9a85 commit d898742
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void onTabComplete(TabCompleteEvent event) {

if(instance.getCore().isSetup()){
tabListOne.add("ipanic");
tabListOne.add("debugPing");
tabListOne.add("debugTool");
tabListOne.add("analytics");
tabListOne.add("setgameshield");
tabListOne.add("setbackend");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private void command(ExecutorBuilder executorBuilder) {
break;
}

case "debugping": {
case "debugtool": {
debugTool();
break;
}
Expand Down Expand Up @@ -345,7 +345,7 @@ private void showHelp(Object sender) {
instance.sendMessage(sender, " - /np setup");
instance.sendMessage(sender, " - /np ipanic");
instance.sendMessage(sender, " - /np analytics");
instance.sendMessage(sender, " - /np debugPing");
instance.sendMessage(sender, " - /np debugTool");
instance.sendMessage(sender, " - /np setgameshield");
instance.sendMessage(sender, " - /np setbackend");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public CompletableFuture<List<String>> suggestAsync(Invocation invocation) {
list.add("setgameshield");
list.add("setbackend");
list.add("analytics");
list.add("debugPing");
list.add("debugTool");
list.add("ipanic");
}

Expand Down

0 comments on commit d898742

Please sign in to comment.