1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-29 07:37:45 +00:00

Style fixes

This commit is contained in:
amibu 2017-10-01 01:20:36 +02:00
parent 606f6e126f
commit c8216f0528

View file

@ -188,12 +188,14 @@ void Core::Entity::Actor::setHp( uint32_t hp )
void Core::Entity::Actor::setMp( uint32_t mp ) void Core::Entity::Actor::setMp( uint32_t mp )
{ {
m_mp = mp < getMaxMp() ? mp : getMaxMp(); m_mp = mp < getMaxMp() ? mp : getMaxMp();
sendStatusUpdate( true );
} }
/*! \param gp amount to set*/ /*! \param gp amount to set*/
void Core::Entity::Actor::setGp( uint32_t gp ) void Core::Entity::Actor::setGp( uint32_t gp )
{ {
m_gp = gp; m_gp = gp;
sendStatusUpdate( true );
} }
/*! \param type invincibility type to set */ /*! \param type invincibility type to set */