mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-26 16:04:27 +02:00
@@ -61,7 +61,7 @@ public class EssentialsCommandHandler implements ICommandHandler, TabExecutor
|
||||
if (pc != null)
|
||||
{
|
||||
|
||||
executed(commandLabel, pc.getLabel());
|
||||
executed(commandLabel, pc);
|
||||
try
|
||||
{
|
||||
return pc.execute(sender, commandLabel, args);
|
||||
@@ -193,7 +193,7 @@ public class EssentialsCommandHandler implements ICommandHandler, TabExecutor
|
||||
if (pc != null)
|
||||
{
|
||||
|
||||
executed(commandLabel, pc.getLabel());
|
||||
executed(commandLabel, pc);
|
||||
try
|
||||
{
|
||||
return pc.tabComplete(sender, commandLabel, args);
|
||||
@@ -404,13 +404,14 @@ public class EssentialsCommandHandler implements ICommandHandler, TabExecutor
|
||||
return pcommands.get(0);
|
||||
}
|
||||
|
||||
public void executed(final String label, final String otherLabel)
|
||||
public void executed(final String label, final PluginCommand pc)
|
||||
{
|
||||
final String altString = pc.getPlugin().getName() + ":" + pc.getLabel();
|
||||
if (ess.getSettings().isDebug())
|
||||
{
|
||||
LOGGER.log(Level.INFO, "Essentials: Alternative command " + label + " found, using " + otherLabel);
|
||||
LOGGER.log(Level.INFO, "Essentials: Alternative command " + label + " found, using " + altString);
|
||||
}
|
||||
disabledList.put(label, otherLabel);
|
||||
disabledList.put(label, altString);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user