1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-06-07 16:47:44 +00:00

fixed style

This commit is contained in:
AriAvery 2019-02-01 15:02:23 +01:00
parent 12a2eae7fc
commit c8bdb6d59d
2 changed files with 4 additions and 4 deletions

View file

@ -598,12 +598,12 @@ void Sapphire::Entity::BNpc::setTimeOfDeath( uint32_t timeOfDeath )
m_timeOfDeath = timeOfDeath;
}
void Sapphire::Entity::BNpc::setDeaf( bool state )
void Sapphire::Entity::BNpc::setIsDeaf( bool state )
{
m_isDeaf = state;
}
void Sapphire::Entity::BNpc::setBlind( bool state )
void Sapphire::Entity::BNpc::setIsBlind( bool state )
{
m_isBlind = state;
}

View file

@ -94,9 +94,9 @@ namespace Sapphire::Entity
uint32_t getTimeOfDeath() const;
void setTimeOfDeath( uint32_t timeOfDeath );
void setDeaf( bool state );
void setIsDeaf( bool state );
void setBlind( bool state );
void setIsBlind( bool state );
bool getIsDeaf();