Remove debug log...

Fix typos in ReaMe.md
This commit is contained in:
Arnaud G. GIBERT 2021-05-05 01:17:03 +02:00
parent f491c12e00
commit dc0f2c69fb
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
### This version of QuakeCraft is a fork from bl4ckskull666 ### This version of QuakeCraft is a fork from bl4ckskull666
### Thanks to Geekpower14 for the original code and thanks to bl4ckskull666 for the resurection! ### Thanks to Geekpower14 for the original code and thanks to bl4ckskull666 for the resurection!
### This Scource Code is free available all time for everybody. The only condition is to respect the GPL license and keep track of the previous authors into the plugin.yml. ### This source code is freely available for everybody. The only condition is to respect the GPL license and keep track of the previous authors into the plugin.yml.
![Quake Plugin](https://media.forgecdn.net/avatars/67/696/636163107094889338.png) ![Quake Plugin](https://media.forgecdn.net/avatars/67/696/636163107094889338.png)

View File

@ -24,7 +24,7 @@ public class MyTabCompleter implements TabCompleter
@Override @Override
public List<String> onTabComplete (CommandSender sender, Command cmd, String label, String[] args) { public List<String> onTabComplete (CommandSender sender, Command cmd, String label, String[] args) {
List<String> list = new ArrayList<>(); List<String> list = new ArrayList<>();
_plugin.getLogger().info("MTC [" + cmd + "] [" + label + "] [" + args.length + "] [[" + Arrays.toString(args) + "]] ["+ args[args.length - 1] + "]"); // _plugin.getLogger().info("MTC [" + cmd + "] [" + label + "] [" + args.length + "] [[" + Arrays.toString(args) + "]] ["+ args[args.length - 1] + "]");
if(cmd.getName().equalsIgnoreCase("quake") && args.length >= 0){ if(cmd.getName().equalsIgnoreCase("quake") && args.length >= 0){
if(sender instanceof Player){ if(sender instanceof Player){