mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-11 19:50:37 +00:00
IceSpike cleanup fix
This commit is contained in:
parent
8f6d92d9e2
commit
f391bba83d
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ public class IceSpike {
|
|||
moveEarth();
|
||||
removeTimers.put(player, System.currentTimeMillis());
|
||||
} else {
|
||||
if (removeTimers.contains(player)) {
|
||||
if (removeTimers.containsKey(player)) {
|
||||
if (removeTimers.get(player) + removeTimer <= System.currentTimeMillis()) {
|
||||
baseblocks.put(location.clone().add(direction.clone().multiply(-1 * (height))).getBlock(),(height - 1));
|
||||
if (!revertblocks()) {
|
||||
|
|
Loading…
Reference in a new issue