A little mistake

master
Joao Pasqualini Costa 11 years ago
parent 7290ec3334
commit 084ee45650

@ -620,10 +620,10 @@ void ProtocolGame::parseOpenContainer(const InputMessagePtr& msg)
int capacity = msg->getU8(); int capacity = msg->getU8();
bool hasParent = (msg->getU8() != 0); bool hasParent = (msg->getU8() != 0);
bool isUnlocked; bool isUnlocked = false;
bool hasPages; bool hasPages = false;
int containerSize; int containerSize = 0;
int firstIndex; int firstIndex = 0;
if(g_game.getFeature(Otc::GameContainerPagination)) { if(g_game.getFeature(Otc::GameContainerPagination)) {
isUnlocked = (msg->getU8() != 0); // drag and drop isUnlocked = (msg->getU8() != 0); // drag and drop

Loading…
Cancel
Save