diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-21 10:08:41 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-21 10:08:41 -0400 |
commit | 8a5ebb5b1c80e7ac857614cee7e7dbd9ab565429 (patch) | |
tree | 08b067f5b5cfada35d6a0eaa60bafe932f5f2c76 /src/player.cpp | |
parent | dff621732099934ba5aba09c6b5c3df87b9858b5 (diff) |
z standardization
Diffstat (limited to 'src/player.cpp')
-rw-r--r-- | src/player.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/player.cpp b/src/player.cpp index db34347..07cb1a0 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -253,8 +253,11 @@ bool PlayerSystem::receive(const UseItemEvent& uie) e.component<Hit>()->effect = uie.attack->effect; } } else if (uie.item->type == "Food") { - player.component<Health>()->health = player.component<Health>()->maxHealth; - InventorySystem::take(uie.item->name, 1); + auto health = player.component<Health>(); + if (health->health < health->maxHealth) { + health->health = health->maxHealth; + InventorySystem::take(uie.item->name, 1); + } } cool.store(false); |