From afeea42cee45a176aeccb330733a606e3bdcb64a Mon Sep 17 00:00:00 2001 From: gunzino Date: Thu, 20 Oct 2016 15:28:57 +0200 Subject: [PATCH] fix seek in container to be able to move back after changing page (#1957) --- src/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.cpp b/src/game.cpp index cc29a71f88..cf3014b943 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -2363,7 +2363,7 @@ void Game::playerSeekInContainer(uint32_t playerId, uint8_t containerId, uint16_ } player->setContainerIndex(containerId, index); - player->sendContainer(containerId, container, false, index); + player->sendContainer(containerId, container, container->hasParent(), index); } void Game::playerUpdateHouseWindow(uint32_t playerId, uint8_t listId, uint32_t windowTextId, const std::string& text)