From 4f02ad59df9ee3314fb0d429a031ecbfa3206e3a Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Fri, 27 Mar 2009 23:25:43 +0100 Subject: Moved the inventory and storage offset handling into netcode No need to complicate the item containers and inventory classes with a silly offset used by the eAthena server. Also fixed the logToStandardOut option by reading it from the config after the configuration has been initialized. --- src/equipment.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/equipment.cpp') diff --git a/src/equipment.cpp b/src/equipment.cpp index c8e58b8c..8fc09fa9 100644 --- a/src/equipment.cpp +++ b/src/equipment.cpp @@ -36,7 +36,7 @@ Equipment::Equipment() #ifdef TMWSERV_SUPPORT std::fill_n(mEquipment, EQUIPMENT_SIZE, (Item*) 0); #else - std::fill_n(mEquipment, EQUIPMENT_SIZE, 0); + std::fill_n(mEquipment, EQUIPMENT_SIZE, -1); #endif } @@ -74,4 +74,10 @@ void Equipment::setEquipment(int index, int inventoryIndex) item->setEquipped(true); } +void Equipment::removeEquipment(int index) +{ + if (index >= 0 && index < EQUIPMENT_SIZE) + mEquipment[index] = -1; +} + #endif -- cgit v1.2.3-70-g09d2