1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-28 12:17:46 +00:00

missing damage

This commit is contained in:
collett 2020-02-05 19:16:20 +09:00
parent 9a9ce6d02e
commit ade2a21631

View file

@ -168,6 +168,8 @@ void EffectResult::execute()
switch( m_type ) switch( m_type )
{ {
case Common::ActionEffectType::Damage: case Common::ActionEffectType::Damage:
case Common::ActionEffectType::BlockedDamage:
case Common::ActionEffectType::ParriedDamage:
{ {
m_target->takeDamage( m_value ); m_target->takeDamage( m_value );
break; break;