Fixed baseSpeed not being parsed (10.59+)

This commit is contained in:
TheSumm
2015-01-19 01:08:18 +01:00
parent 26fb35fd4d
commit 63f95317a2
6 changed files with 22 additions and 17 deletions

View File

@@ -58,6 +58,7 @@ public:
void setOutfitColor(const Color& color, int duration);
void setLight(const Light& light) { m_light = light; }
void setSpeed(uint16 speed);
void setBaseSpeed(double baseSpeed);
void setSkull(uint8 skull);
void setShield(uint8 shield);
void setEmblem(uint8 emblem);
@@ -82,6 +83,7 @@ public:
Outfit getOutfit() { return m_outfit; }
Light getLight() { return m_light; }
uint16 getSpeed() { return m_speed; }
double getBaseSpeed() { return m_baseSpeed; }
uint8 getSkull() { return m_skull; }
uint8 getShield() { return m_shield; }
uint8 getEmblem() { return m_emblem; }
@@ -147,6 +149,7 @@ protected:
Outfit m_outfit;
Light m_light;
int m_speed;
double m_baseSpeed;
uint8 m_skull;
uint8 m_shield;
uint8 m_emblem;