From 7b4c130e0a26a4d2d0b997786bad2232d7f98c62 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Sun, 3 Sep 2017 15:02:36 -0400 Subject: [PATCH] Switch local saved "animation" to signed This variable is really the SpeedRun but packed as an int ... --- zone/mob.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/mob.h b/zone/mob.h index 16e73ba77..1e6ae6194 100644 --- a/zone/mob.h +++ b/zone/mob.h @@ -1222,7 +1222,7 @@ protected: glm::vec4 m_Position; /* Used to determine when an NPC has traversed so many units - to send a zone wide pos update */ glm::vec4 last_major_update_position; - uint16 animation; + int animation; // this is really what MQ2 calls SpeedRun just packed like (int)(SpeedRun * 40.0f) float base_size; float size; float runspeed;