mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-12 09:51:12 +01:00
SPIGOT-5214: setCooldown not working
This commit is contained in:
parent
860b354014
commit
f744c09c02
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue