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

(cherry picked from commit 9540df7)
This commit is contained in:
majikguy 2017-03-03 16:57:04 -08:00 committed by Nicholas Ignoffo
parent fd54ab0458
commit 58db36033a

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;