fix blue heal colour (absorb / reflect / recharge)

This commit is contained in:
Mashy 2020-01-15 10:18:49 +10:00
parent 2fd3364a52
commit 84b68e2ccc

View File

@ -911,7 +911,7 @@ impl Construct {
construct: self.id, construct: self.id,
amount: healing, amount: healing,
overhealing, overhealing,
colour: Colour::Red, colour: Colour::Blue,
display: EventConstruct::new(self), display: EventConstruct::new(self),
}); });
} }
@ -933,7 +933,7 @@ impl Construct {
construct: self.id, construct: self.id,
amount: blue_damage_amount, amount: blue_damage_amount,
mitigation: blue_mitigation, mitigation: blue_mitigation,
colour: Colour::Red, colour: Colour::Blue,
display: EventConstruct::new(self), display: EventConstruct::new(self),
}); });
} }