From 8a5ebb5b1c80e7ac857614cee7e7dbd9ab565429 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 21 Oct 2017 10:08:41 -0400 Subject: z standardization --- src/player.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/player.cpp') 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()->effect = uie.attack->effect; } } else if (uie.item->type == "Food") { - player.component()->health = player.component()->maxHealth; - InventorySystem::take(uie.item->name, 1); + auto health = player.component(); + if (health->health < health->maxHealth) { + health->health = health->maxHealth; + InventorySystem::take(uie.item->name, 1); + } } cool.store(false); -- cgit v1.2.3