diff options
Diffstat (limited to 'src/localplayer.cpp')
-rw-r--r-- | src/localplayer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 3d12c7c1..0313fe81 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -23,9 +23,9 @@ #include "localplayer.h" -#include "game.h" #include "equipment.h" #include "floor_item.h" +#include "game.h" #include "inventory.h" #include "item.h" #include "main.h" @@ -39,7 +39,6 @@ LocalPlayer *player_node = NULL; LocalPlayer::LocalPlayer(Uint32 id, Uint16 job, Map *map): Player(id, job, map), mInventory(new Inventory()), - mEquipment(new Equipment()), mTarget(NULL), mPickUpTarget(NULL), mTrading(false), mLastAction(-1) { |