From 00f879600bcea8f1ec1775c941041ee6346a60ba Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 28 Mar 2017 11:21:33 -0400 Subject: skirl can kill --- include/components.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include/components.hpp') diff --git a/include/components.hpp b/include/components.hpp index 20a1419..dafb859 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -611,10 +611,11 @@ struct Aggro : public Component { }; struct Hit : public Component { - Hit(int d) - : damage(d) {} + Hit(int d, bool p = false) + : damage(d), pierce(p) {} int damage; + bool pierce; void fromXML(XMLElement* imp, XMLElement* def) final { (void)imp; -- cgit v1.2.3