Changed the Heal Amount of Apples from 6 to 2

This commit is contained in:
sfan5 2011-09-12 19:44:26 +02:00
parent 4328a6442b
commit 785a2fd23a
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ s16 item_craft_eat_hp_change(const std::string &subname)
if(subname == "cooked_rat")
return 6; // 3 hearts
else if(subname == "apple")
return 12; // 6 hearts
return 4; // 2 hearts
return 0;
}