Skip to content

Commit

Permalink
Nerf hydra chop advancement hunger requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
ACGaming committed Apr 27, 2024
1 parent ec1714e commit ebb6e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/twilightforest/item/ItemTFHydraChops.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public ItemTFHydraChops(int amount, float saturation) {
@Override
public ItemStack onItemUseFinish(ItemStack itemStack, World world, EntityLivingBase living) {
// if the player is at zero food, achievements
if (living instanceof EntityPlayerMP && ((EntityPlayerMP) living).getFoodStats().getFoodLevel() <= 0) {
if (living instanceof EntityPlayerMP && ((EntityPlayerMP) living).getFoodStats().getFoodLevel() <= 10) {
TFAdvancements.CONSUME_HYDRA_CHOP.trigger((EntityPlayerMP) living);
}
// then normal effects
Expand Down

0 comments on commit ebb6e44

Please sign in to comment.