diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/game.cpp b/src/game.cpp index ef930d92..6fda630e 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -156,13 +156,11 @@ static void createGuiWindows() tradeWindow = new TradeWindow; switch (Net::getNetworkType()) { - case ServerInfo::TMWATHENA: - equipmentWindow = new TmwAthena::TaEquipmentWindow( - PlayerInfo::getEquipment()); - break; - case ServerInfo::MANASERV: - default: - equipmentWindow = new EquipmentWindow(PlayerInfo::getEquipment()); + case ServerInfo::TMWATHENA: + case ServerInfo::MANASERV: + default: + equipmentWindow = + new TmwAthena::TaEquipmentWindow(PlayerInfo::getEquipment()); break; } statusWindow = new StatusWindow; |