diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/game.cpp b/src/game.cpp index af9c2c39..5fb98e6c 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -154,15 +154,7 @@ static void createGuiWindows() minimap = new Minimap; chatWindow = new ChatWindow; tradeWindow = new TradeWindow; - switch (Net::getNetworkType()) - { - case ServerInfo::TMWATHENA: - case ServerInfo::MANASERV: - default: - equipmentWindow = - new TmwAthena::TaEquipmentWindow(PlayerInfo::getEquipment()); - break; - } + equipmentWindow = new EquipmentWindow(PlayerInfo::getEquipment()); statusWindow = new StatusWindow; inventoryWindow = new InventoryWindow(PlayerInfo::getInventory()); skillDialog = new SkillDialog; |