From 1b57518ca97c670174f89c5af28659b6ad0c3d42 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 27 Feb 2011 03:36:52 +0200 Subject: Implement receiving item color from server. --- src/inventory.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/inventory.cpp') diff --git a/src/inventory.cpp b/src/inventory.cpp index 04a8a8962..4544c09be 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -83,13 +83,14 @@ Item *Inventory::findItem(int itemId) const return 0; } -void Inventory::addItem(int id, int quantity, int refine, bool equipment) +void Inventory::addItem(int id, int quantity, int refine, + unsigned char color, bool equipment) { - setItem(getFreeSlot(), id, quantity, refine, equipment); + setItem(getFreeSlot(), id, quantity, refine, color, equipment); } void Inventory::setItem(int index, int id, int quantity, - int refine, bool equipment) + int refine, unsigned char color, bool equipment) { if (index < 0 || index >= static_cast(mSize)) { @@ -107,7 +108,7 @@ void Inventory::setItem(int index, int id, int quantity, } else if (id > 0 && mItems[index]) { - mItems[index]->setId(id); + mItems[index]->setId(id, color); mItems[index]->setQuantity(quantity); mItems[index]->setRefine(refine); mItems[index]->setEquipment(equipment); -- cgit v1.2.3-70-g09d2