aboutsummaryrefslogtreecommitdiffstats
path: root/src/player.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-10-21 10:08:41 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-10-21 10:08:41 -0400
commit8a5ebb5b1c80e7ac857614cee7e7dbd9ab565429 (patch)
tree08b067f5b5cfada35d6a0eaa60bafe932f5f2c76 /src/player.cpp
parentdff621732099934ba5aba09c6b5c3df87b9858b5 (diff)
z standardization
Diffstat (limited to 'src/player.cpp')
-rw-r--r--src/player.cpp7
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);