From 2dee62c850233f34ffe3fc35f8f143dd885dd3f1 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Sat, 27 Aug 2016 00:47:55 -0500 Subject: [PATCH] Refactor didn't save (oops) --- zone/horse.cpp | 2 +- zone/mob.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/horse.cpp b/zone/horse.cpp index 2d1f04f01..62254a6b0 100644 --- a/zone/horse.cpp +++ b/zone/horse.cpp @@ -36,7 +36,7 @@ Horse::Horse(Client *_owner, uint16 spell_id, const glm::vec4& position) strn0cpy(name, _owner->GetCleanName(), 55); strcat(name,"`s_Mount00"); - is_horse = true; + IsHorse = true; owner = _owner; } diff --git a/zone/mob.h b/zone/mob.h index 4c09dc200..c09da4e0b 100644 --- a/zone/mob.h +++ b/zone/mob.h @@ -1405,7 +1405,7 @@ protected: std::unordered_map> aa_ranks; Timer aa_timers[aaTimerMax]; - bool is_horse; + bool IsHorse; private: void _StopSong(); //this is not what you think it is