From 84b68e2cccc9755dc9f5f0be3c0c6db44885337c Mon Sep 17 00:00:00 2001 From: Mashy Date: Wed, 15 Jan 2020 10:18:49 +1000 Subject: [PATCH] fix blue heal colour (absorb / reflect / recharge) --- core/src/construct.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/construct.rs b/core/src/construct.rs index 16b13c63..16572a8b 100644 --- a/core/src/construct.rs +++ b/core/src/construct.rs @@ -911,7 +911,7 @@ impl Construct { construct: self.id, amount: healing, overhealing, - colour: Colour::Red, + colour: Colour::Blue, display: EventConstruct::new(self), }); } @@ -933,7 +933,7 @@ impl Construct { construct: self.id, amount: blue_damage_amount, mitigation: blue_mitigation, - colour: Colour::Red, + colour: Colour::Blue, display: EventConstruct::new(self), }); }