diff options
Diffstat (limited to '')
-rw-r--r-- | src/BlockEntities/FlowerPotEntity.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/BlockEntities/FlowerPotEntity.cpp b/src/BlockEntities/FlowerPotEntity.cpp index 5446ee5bd..60b2db4f5 100644 --- a/src/BlockEntities/FlowerPotEntity.cpp +++ b/src/BlockEntities/FlowerPotEntity.cpp @@ -59,6 +59,8 @@ bool cFlowerPotEntity::UsedBy(cPlayer * a_Player) return false; } + a_Player->GetStatManager().AddValue(Statistic::PotFlower); + cItem SelectedItem = a_Player->GetInventory().GetEquippedItem(); if (IsFlower(SelectedItem.m_ItemType, SelectedItem.m_ItemDamage)) { |