diff --git a/src/creatures/players/player.cpp b/src/creatures/players/player.cpp index 8af050e0c4e..3baf289ae68 100644 --- a/src/creatures/players/player.cpp +++ b/src/creatures/players/player.cpp @@ -1234,7 +1234,6 @@ std::shared_ptr Player::getDepotChest(uint32_t depotId, bool autoCre } std::shared_ptr depotChest; -#if CLIENT_VERSION >= 1100 if (depotId > 0 && depotId < 18) { depotChest = std::make_shared(ITEM_DEPOT_NULL + depotId); } else if (depotId == 18) { @@ -1244,11 +1243,6 @@ std::shared_ptr Player::getDepotChest(uint32_t depotId, bool autoCre } else { depotChest = std::make_shared(ITEM_DEPOT_XX); } -#else - if (depotId > 0 && depotId <= 20) { - depotChest = std::make_shared(ITEM_DEPOT_NULL + depotId); - } -#endif depotChests[depotId] = depotChest; return depotChest; }