mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-26 03:52:01 +02:00
vcmi: fixup cast in Heal effect
This commit is contained in:
parent
7c56fbd16b
commit
c400e83874
@ -127,7 +127,7 @@ void Heal::prepareHealEffect(int64_t value, BattleUnitsChanged & pack, BattleLog
|
||||
else if (unitHPgained > 0 && m->caster->getHeroCaster() == nullptr) //Show text about healed HP if healed by unit
|
||||
{
|
||||
MetaString healText;
|
||||
auto casterUnit = dynamic_cast<const battle::CUnitState*>(m->caster)->acquire();
|
||||
auto casterUnit = dynamic_cast<const battle::Unit*>(m->caster);
|
||||
healText.addTxt(MetaString::GENERAL_TXT, 414);
|
||||
casterUnit->addNameReplacement(healText, false);
|
||||
state->addNameReplacement(healText, false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user