diff options
author | Mattes D <github@xoft.cz> | 2014-05-23 11:25:42 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-05-23 11:25:42 +0200 |
commit | 64dbc45a00b0c8d24a48293cbd3ff116d7b51735 (patch) | |
tree | 857bbe55266e9cc97eb8fc836698692bda51f221 /src/Items | |
parent | Updated plains village prefabs. (diff) | |
parent | Fixed profiling flags for MSVC. (diff) | |
download | cuberite-64dbc45a00b0c8d24a48293cbd3ff116d7b51735.tar cuberite-64dbc45a00b0c8d24a48293cbd3ff116d7b51735.tar.gz cuberite-64dbc45a00b0c8d24a48293cbd3ff116d7b51735.tar.bz2 cuberite-64dbc45a00b0c8d24a48293cbd3ff116d7b51735.tar.lz cuberite-64dbc45a00b0c8d24a48293cbd3ff116d7b51735.tar.xz cuberite-64dbc45a00b0c8d24a48293cbd3ff116d7b51735.tar.zst cuberite-64dbc45a00b0c8d24a48293cbd3ff116d7b51735.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemFishingRod.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Items/ItemFishingRod.h b/src/Items/ItemFishingRod.h index 0431b88b7..32c151db5 100644 --- a/src/Items/ItemFishingRod.h +++ b/src/Items/ItemFishingRod.h @@ -142,6 +142,8 @@ public: break; } } + + a_Player->GetStatManager().AddValue(statTreasureFished, 1); } else if (ItemCategory <= 14) // Junk 10% { @@ -190,6 +192,8 @@ public: { Drops.Add(cItem(E_BLOCK_TRIPWIRE_HOOK)); } + + a_Player->GetStatManager().AddValue(statJunkFished, 1); } else // Fish { @@ -210,6 +214,8 @@ public: { Drops.Add(cItem(E_ITEM_RAW_FISH, 1, E_META_RAW_FISH_FISH)); } + + a_Player->GetStatManager().AddValue(statFishCaught, 1); } if (cRoot::Get()->GetPluginManager()->CallHookPlayerFishing(*a_Player, Drops)) |