summaryrefslogtreecommitdiff
path: root/src/monster.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/monster.cpp')
-rw-r--r--src/monster.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/monster.cpp b/src/monster.cpp
index 8a7e2f32..ce073a04 100644
--- a/src/monster.cpp
+++ b/src/monster.cpp
@@ -32,7 +32,8 @@
Monster::Monster(Uint32 id, Uint16 job, Map *map):
Being(id, job, map)
{
- mSprites[BASE_SPRITE] = new AnimatedSprite("graphics/sprites/monster" + toString(job - 1002) + ".xml", 0);
+ mSprites[BASE_SPRITE] = new AnimatedSprite(
+ "graphics/sprites/monster" + toString(job - 1002) + ".xml", 0);
}
void