From: sfan5 Date: Mon, 12 Sep 2011 17:44:26 +0000 (+0200) Subject: Changed the Heal Amount of Apples from 6 to 2 X-Git-Tag: 0.2.20110922~3^2~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=785a2fd23a47af3629db824adc5e4e1376880d4d;p=oweals%2Fminetest.git Changed the Heal Amount of Apples from 6 to 2 --- diff --git a/src/content_inventory.cpp b/src/content_inventory.cpp index 55ddbf8dc..e0c9d8b86 100644 --- a/src/content_inventory.cpp +++ b/src/content_inventory.cpp @@ -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; }