Commands can have custom cooldowns again

This commit is contained in:
Treeku
2014-04-06 23:07:30 +01:00
parent 124fb6747f
commit 6e137ab561
+1 -1
View File
@@ -84,7 +84,7 @@ public class CommandService implements INetworkDispatch {
return false;
}
if (actor.hasCooldown(command.getCooldownGroup())) {
if (actor.hasCooldown(command.getCooldownGroup()) || actor.hasCooldown(command.getCommandName())) {
return false;
}