diff --git a/src/world/Actor/BNpc.cpp b/src/world/Actor/BNpc.cpp index 2f684e2c..a08a66b0 100644 --- a/src/world/Actor/BNpc.cpp +++ b/src/world/Actor/BNpc.cpp @@ -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; } diff --git a/src/world/Actor/BNpc.h b/src/world/Actor/BNpc.h index bc44be62..b22c5f2c 100644 --- a/src/world/Actor/BNpc.h +++ b/src/world/Actor/BNpc.h @@ -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();