Always grab the forest potion

This commit is contained in:
Kyle Coburn 2015-04-29 11:38:30 -07:00
parent 20db16fc0e
commit 635f9df706
1 changed files with 1 additions and 1 deletions

View File

@ -530,7 +530,7 @@ strategyFunctions.grabForestPotion = function()
local potionCount = Inventory.count("potion") local potionCount = Inventory.count("potion")
if Strategies.initialize() then if Strategies.initialize() then
status.previousPotions = potionCount status.previousPotions = potionCount
status.needsExtraPotion = potionCount == 0 or Pokemon.info("squirtle", "hp") <= 16 status.needsExtraPotion = true
elseif status.needsExtraPotion then elseif status.needsExtraPotion then
if potionCount > status.previousPotions then if potionCount > status.previousPotions then
status.needsExtraPotion = false status.needsExtraPotion = false