projects
/
zefram
/
minetest
/
minetest_engine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4328a64
)
Changed the Heal Amount of Apples from 6 to 2
author
sfan5
<sfan5@live.de>
Mon, 12 Sep 2011 17:44:26 +0000
(19:44 +0200)
committer
sfan5
<sfan5@live.de>
Mon, 12 Sep 2011 17:44:26 +0000
(19:44 +0200)
src/content_inventory.cpp
patch
|
blob
|
history
diff --git
a/src/content_inventory.cpp
b/src/content_inventory.cpp
index 55ddbf8dcdf7a1f3a7ca5108b3059757f65835a2..e0c9d8b86d836c9035e3242b9ee761266296af00 100644
(file)
--- 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;
}