From 183331ccf1aa3f4142697e9e37528f084fae7466 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 13 Feb 2017 16:57:19 -0500 Subject: rip skirl --- include/components.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/components.hpp') diff --git a/include/components.hpp b/include/components.hpp index ebc256d..3169a6d 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -88,10 +88,11 @@ struct Health { /** * Constructor that sets the variables, with 0 health as default. */ - Health(int h = 0, int m = 0) : health(h), maxHealth(m) {} + Health(int m = 1, int h = 0) + : health(h != 0 ? h : m), maxHealth(m) {} - int health; - int maxHealth; + int health; /**< The current amount of health */ + int maxHealth; /**< The maximum amount of health */ }; struct Portal { -- cgit v1.2.3