From c8bdb6d59d083fd1cf0248c2cb7528fbb195b4c9 Mon Sep 17 00:00:00 2001 From: AriAvery <41122212+AriAvery@users.noreply.github.com> Date: Fri, 1 Feb 2019 15:02:23 +0100 Subject: [PATCH] fixed style --- src/world/Actor/BNpc.cpp | 4 ++-- src/world/Actor/BNpc.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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();