summaryrefslogtreecommitdiff
path: root/src/localplayer.cpp
diff options
context:
space:
mode:
authorLloyd Bryant <lloyd_bryant@netzero.net>2008-09-12 17:12:24 +0000
committerLloyd Bryant <lloyd_bryant@netzero.net>2008-09-12 17:12:24 +0000
commit8551f4a5c5e1feddc4f2868488bdefeae85aa26d (patch)
tree39b91c9d7124c1c03e954ceb9b3434adcaf022ce /src/localplayer.cpp
parenta9595f435664df56948ae70e954cf72143ddcfa1 (diff)
downloadMana-8551f4a5c5e1feddc4f2868488bdefeae85aa26d.tar.gz
Mana-8551f4a5c5e1feddc4f2868488bdefeae85aa26d.tar.bz2
Mana-8551f4a5c5e1feddc4f2868488bdefeae85aa26d.tar.xz
Mana-8551f4a5c5e1feddc4f2868488bdefeae85aa26d.zip
Fixed /where, added /cast for heal and gather, some changes to inventory to support storage
Diffstat (limited to 'src/localplayer.cpp')
-rw-r--r--src/localplayer.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp
index 7b0c2b8b..554c52a6 100644
--- a/src/localplayer.cpp
+++ b/src/localplayer.cpp
@@ -48,16 +48,18 @@ LocalPlayer::LocalPlayer(Uint32 id, Uint16 job, Map *map):
mAttackRange(0),
mXp(0), mNetwork(0),
mTarget(NULL), mPickUpTarget(NULL),
- mTrading(false), mGoingToTarget(false),
- mLastAction(-1),
+ mTrading(false), mInStorage(false),
+ mGoingToTarget(false), mLastAction(-1),
mWalkingDir(0), mDestX(0), mDestY(0),
- mInventory(new Inventory)
+ mInventory(new Inventory(INVENTORY_SIZE)),
+ mStorage(new Inventory(STORAGE_SIZE))
{
}
LocalPlayer::~LocalPlayer()
{
delete mInventory;
+ delete mStorage;
}
void LocalPlayer::logic()