Skip to content

Commit

Permalink
Fix Potash Apple cannot be eaten
Browse files Browse the repository at this point in the history
  • Loading branch information
million09 authored Sep 10, 2021
1 parent d5b4bdd commit e9ed3e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public void registerItems(Register<Item> event)
skyberry = edibles.addFood(8, 1, 0.4F, 16, "skyberry", false, new PotionEffect(MobEffects.JUMP_BOOST, 8 * 20, 0), new PotionEffect(MobEffects.SLOWNESS, 3 * 20, 0));
stingberry = edibles.addFood(9, 1, 0.4F, 16, "stingberry", false, new PotionEffect(MobEffects.STRENGTH, 10 * 20, 0), new PotionEffect(MobEffects.MINING_FATIGUE, 10 * 20, 0));

potashApple = edibles.addFood(10, 4, 0.4F, "potashapple", false, new PotionEffect(MobEffects.POISON, 2 * 25, 0));
potashApple = edibles.addFood(10, 4, 0.4F, 32, "potashapple", false, new PotionEffect(MobEffects.POISON, 2 * 25, 0));
}

cactusJuice = edibles.addFood(11, 1, 0.1f, 12, "cactusjuice", false);
Expand Down

0 comments on commit e9ed3e9

Please sign in to comment.