Skip to content

Commit

Permalink
Fix cloche GUI not showing arrow bar
Browse files Browse the repository at this point in the history
  • Loading branch information
voidsong-dragonfly committed Mar 18, 2024
1 parent 442b272 commit 225dd9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public float getGuiProgress()
ClocheRecipe recipe = cachedRecipe.get();
if(recipe==null)
return 0;
return Mth.clamp(renderGrowth/recipe.getTime(seed, soil), 0, 1);
return Mth.clamp(growth/recipe.getTime(seed, soil), 0, 1);
}

protected void sendSyncPacket()
Expand Down

0 comments on commit 225dd9f

Please sign in to comment.