diff --git a/crafting-dead-core/src/main/java/com/craftingdead/core/world/action/item/BlockItemAction.java b/crafting-dead-core/src/main/java/com/craftingdead/core/world/action/item/BlockItemAction.java index 1641ed5a..859ae2e3 100644 --- a/crafting-dead-core/src/main/java/com/craftingdead/core/world/action/item/BlockItemAction.java +++ b/crafting-dead-core/src/main/java/com/craftingdead/core/world/action/item/BlockItemAction.java @@ -85,7 +85,7 @@ public boolean tick() { return false; } // Makes sure it happens when the action is finished - // this.progress might not reach so >= 0.99F is the safer + // this.progress might not reach 1.00F so >= 0.99F is safer if (this.progress >= 0.99F) { this.destroyBlockAction(); }