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/scripts/examples/example_gossip_codebox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/scripts/examples') diff --git a/src/scripts/examples/example_gossip_codebox.cpp b/src/scripts/examples/example_gossip_codebox.cpp index b5ff766c511..0506c9ada42 100644 --- a/src/scripts/examples/example_gossip_codebox.cpp +++ b/src/scripts/examples/example_gossip_codebox.cpp @@ -67,7 +67,7 @@ bool GossipSelectWithCode_example_gossip_codebox(Player* pPlayer, Creature* pCre switch (uiAction) { case GOSSIP_ACTION_INFO_DEF+1: - if (std::strcmp(sCode, pPlayer->GetName())!=0) + if (std::strcmp(sCode, pPlayer->GetName()) != 0) { DoScriptText(SAY_WRONG, pCreature); pCreature->CastSpell(pPlayer, SPELL_POLYMORPH, true); -- cgit v1.2.3