From 4635fbc0201846721287a1eb730491262237babd Mon Sep 17 00:00:00 2001 From: Spp Date: Thu, 8 Apr 2010 08:20:08 +0200 Subject: Code Style (game + scripts only): "!=" --> " != " (when needed) " !=" --> " !=" "!= " --> "!= " --HG-- branch : trunk --- src/game/TradeHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/TradeHandler.cpp') diff --git a/src/game/TradeHandler.cpp b/src/game/TradeHandler.cpp index 8b5a250320f..448a6e0520d 100644 --- a/src/game/TradeHandler.cpp +++ b/src/game/TradeHandler.cpp @@ -613,7 +613,7 @@ void WorldSession::HandleSetTradeItemOpcode(WorldPacket& recvPacket) // check cheating, can't fail with correct client operations Item* item = _player->GetItemByPos(bag,slot); - if (!item || (tradeSlot!=TRADE_SLOT_NONTRADED && !item->CanBeTraded())) + if (!item || (tradeSlot != TRADE_SLOT_NONTRADED && !item->CanBeTraded())) { SendTradeStatus(TRADE_STATUS_TRADE_CANCELED); return; -- cgit v1.2.3