diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-07-30 18:51:15 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-07-30 18:51:15 +0300 |
commit | d62ae0e18bc570033ada07454b1642f696fe17b1 (patch) | |
tree | 69564fe33c88a90e74ccf0da356e9664ecc32817 /src/content_inventory.cpp | |
parent | 4556c212dba726271352b05a9299564e05abb218 (diff) | |
download | minetest-d62ae0e18bc570033ada07454b1642f696fe17b1.tar.gz minetest-d62ae0e18bc570033ada07454b1642f696fe17b1.tar.bz2 minetest-d62ae0e18bc570033ada07454b1642f696fe17b1.zip |
Rats are now eatable. Also made their selection box move smoothly.
Diffstat (limited to 'src/content_inventory.cpp')
-rw-r--r-- | src/content_inventory.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/content_inventory.cpp b/src/content_inventory.cpp index 24840d6af..de8f8e397 100644 --- a/src/content_inventory.cpp +++ b/src/content_inventory.cpp @@ -122,3 +122,18 @@ InventoryItem* item_craft_create_cook_result(const std::string &subname) return NULL; } +bool item_craft_is_eatable(const std::string &subname) +{ + if(subname == "cooked_rat") + return true; + return false; +} + +s16 item_craft_eat_hp_change(const std::string &subname) +{ + if(subname == "cooked_rat") + return 6; // 3 hearts + return 0; +} + + |