1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-30 16:17:46 +00:00
This commit is contained in:
NotAdam 2020-01-26 21:16:41 +11:00
parent 3aafea9edf
commit 0dbcda7229
2 changed files with 3 additions and 3 deletions

View file

@ -85,9 +85,9 @@ void EffectResult::applyStatusEffect( uint16_t statusId, uint8_t param )
m_type = Common::ActionEffectType::ApplyStatusEffect;
}
void EffectResult::mount( uint16_t moundId )
void EffectResult::mount( uint16_t mountId )
{
m_value = moundId;
m_value = mountId;
m_param0 = 1;
m_type = Common::ActionEffectType::Mount;

View file

@ -21,7 +21,7 @@ namespace Sapphire::World::Action
void startCombo( uint16_t actionId );
void comboSucceed();
void applyStatusEffect( uint16_t statusId, uint8_t param );
void mount( uint16_t moundId );
void mount( uint16_t mountId );
Entity::CharaPtr getTarget() const;