From 153cf3e8598c5e005b50912a9ed1b6048b34df64 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 29 Jul 2014 21:11:56 +0200 Subject: [PATCH] Container fix --- src/client/protocolgameparse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/protocolgameparse.cpp b/src/client/protocolgameparse.cpp index a4b84014..51b99735 100644 --- a/src/client/protocolgameparse.cpp +++ b/src/client/protocolgameparse.cpp @@ -631,7 +631,7 @@ void ProtocolGame::parseOpenContainer(const InputMessagePtr& msg) int capacity = msg->getU8(); bool hasParent = (msg->getU8() != 0); - bool isUnlocked = false; + bool isUnlocked = true; bool hasPages = false; int containerSize = 0; int firstIndex = 0;