1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-12 01:25:26 +02:00

Corrected all commands of PermCommands

onCommand now supports the change of the permissions prefix
This commit is contained in:
snowleo
2011-06-26 15:47:28 +02:00
parent 3b9a07e560
commit 88ded926f4
24 changed files with 39 additions and 37 deletions

View File

@@ -38,6 +38,6 @@ public class EssentialsSpawn extends JavaPlugin
@Override
public boolean onCommand(CommandSender sender, Command command, String commandLabel, String[] args)
{
return Essentials.getStatic().onCommandEssentials(sender, command, commandLabel, args, EssentialsSpawn.class.getClassLoader(), "com.earth2me.essentials.spawn.Command");
return Essentials.getStatic().onCommandEssentials(sender, command, commandLabel, args, EssentialsSpawn.class.getClassLoader(), "com.earth2me.essentials.spawn.Command", "essentials.");
}
}