diff options
author | Mark Holmquist <marktraceur@gmail.com> | 2011-08-16 02:14:49 -0700 |
---|---|---|
committer | Mark Holmquist <marktraceur@gmail.com> | 2011-09-23 18:13:53 -0700 |
commit | 85f119e1e6cc958a54eaf8468f2a302aa8c60dbe (patch) | |
tree | 289ee051ee5eeba1174147229f111ce109ac9e68 /src/server.cpp | |
parent | 789c88509c1eab8407d3451d55eb31f65150e54a (diff) | |
download | minetest-85f119e1e6cc958a54eaf8468f2a302aa8c60dbe.tar.gz minetest-85f119e1e6cc958a54eaf8468f2a302aa8c60dbe.tar.bz2 minetest-85f119e1e6cc958a54eaf8468f2a302aa8c60dbe.zip |
Adding (most) of the sapling functionality. It has yet to work, since MEET_OTHER was not implemented at the time of this commit. Hopefully it will work when merged with celeron's latest.
Diffstat (limited to 'src/server.cpp')
-rw-r--r-- | src/server.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/server.cpp b/src/server.cpp index a04417074..04a23b777 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -2735,6 +2735,34 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id) UpdateCrafting(player->peer_id); SendInventory(player->peer_id); } + + item = NULL; + + if(mineral != MINERAL_NONE) + item = getDiggedMineralItem(mineral); + + // If not mineral + if(item == NULL) + { + std::string &extra_dug_s = content_features(material).extra_dug_item; + s32 extra_rarity = content_features(material).extra_dug_item_rarity; + if(extra_dug_s != "" && extra_rarity != 0 + && myrand() % extra_rarity == 0) + { + std::istringstream is(extra_dug_s, std::ios::binary); + item = InventoryItem::deSerialize(is); + } + } + + if(item != NULL) + { + // Add a item to inventory + player->inventory.addItem("main", item); + + // Send inventory + UpdateCrafting(player->peer_id); + SendInventory(player->peer_id); + } } /* |