Fixed a typo that made stage 4 of the Body Builder upgrade 5x as difficult as stage 5. (#1080)

This commit is contained in:
majikguy 2017-03-03 19:57:04 -05:00 committed by Nick Ignoffo
parent 22354eaa0a
commit 9540df7cf1

View file

@ -19,7 +19,7 @@ public class StatTrackerFood extends StatTracker
{
public static Map<EntityPlayer, Integer> lastFoodEatenMap = new HashMap<EntityPlayer, Integer>();
public static int[] foodRequired = new int[] { 100, 200, 300, 5000, 1000 };
public static int[] foodRequired = new int[] { 100, 200, 300, 500, 1000 };
public int foodEaten = 0;