mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 18:27:41 +01:00
SPIGOT-5214: setCooldown not working
By: md_5 <git@md-5.net>
This commit is contained in:
parent
c31f9f7b90
commit
526ee7e53e
@ -662,7 +662,7 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
|||||||
Preconditions.checkArgument(material != null, "material");
|
Preconditions.checkArgument(material != null, "material");
|
||||||
Preconditions.checkArgument(ticks >= 0, "Cannot have negative cooldown");
|
Preconditions.checkArgument(ticks >= 0, "Cannot have negative cooldown");
|
||||||
|
|
||||||
getHandle().getCooldownTracker().a(CraftMagicNumbers.getItem(material), ticks);
|
getHandle().getCooldownTracker().setCooldown(CraftMagicNumbers.getItem(material), ticks);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user