summaryrefslogtreecommitdiff
path: root/src/item.cpp
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-08-01 07:23:58 +0000
committerGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-08-01 07:23:58 +0000
commit6eb86a3d23953856eeac3a4e7c4f52143e24f880 (patch)
treeec27e96f1952de3768c15f17f93f4876408e24a6 /src/item.cpp
parent36d28236321b6a2824ad4f394faeabbf79626808 (diff)
downloadmana-client-6eb86a3d23953856eeac3a4e7c4f52143e24f880.tar.gz
mana-client-6eb86a3d23953856eeac3a4e7c4f52143e24f880.tar.bz2
mana-client-6eb86a3d23953856eeac3a4e7c4f52143e24f880.tar.xz
mana-client-6eb86a3d23953856eeac3a4e7c4f52143e24f880.zip
Fixed update of equipment flag, so that items can be equipped properly.
Diffstat (limited to 'src/item.cpp')
-rw-r--r--src/item.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/item.cpp b/src/item.cpp
index 487f17da..946181dc 100644
--- a/src/item.cpp
+++ b/src/item.cpp
@@ -31,3 +31,9 @@ Item::Item(int id, int quantity) :
mEquipment = getInfo().getType();
}
+void Item::setId(int id)
+{
+ mId = id;
+ mEquipment = getInfo().getType();
+}
+