summaryrefslogtreecommitdiff
path: root/src/monster.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/monster.cpp')
-rw-r--r--src/monster.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/monster.cpp b/src/monster.cpp
index 044f80a2..dfe84e65 100644
--- a/src/monster.cpp
+++ b/src/monster.cpp
@@ -19,10 +19,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "monster.h"
+
#include "animatedsprite.h"
-#include "game.h"
+#include "client.h"
#include "localplayer.h"
-#include "monster.h"
#include "particle.h"
#include "sound.h"
#include "text.h"
@@ -38,7 +39,7 @@ Monster::Monster(int id, int job, Map *map):
Being(id, job, map),
mAttackType(1)
{
- const MonsterInfo& info = getInfo();
+ const MonsterInfo &info = getInfo();
// Setup Monster sprites
const std::list<std::string> &sprites = info.getSprites();