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/GroupHandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/GroupHandler.cpp') diff --git a/src/game/GroupHandler.cpp b/src/game/GroupHandler.cpp index 05e490684bd..1d6aae6f095 100644 --- a/src/game/GroupHandler.cpp +++ b/src/game/GroupHandler.cpp @@ -915,11 +915,11 @@ void WorldSession::HandleOptOutOfLootOpcode(WorldPacket & recv_data) // ignore if player not loaded if (!GetPlayer()) // needed because STATUS_AUTHED { - if (unkn!=0) + if (unkn != 0) sLog.outError("CMSG_GROUP_PASS_ON_LOOT value<>0 for not-loaded character!"); return; } - if (unkn!=0) + if (unkn != 0) sLog.outError("CMSG_GROUP_PASS_ON_LOOT: activation not implemented!"); } -- cgit v1.2.3