diff options
| author | Spp <none@none> | 2010-04-08 08:20:08 +0200 |
|---|---|---|
| committer | Spp <none@none> | 2010-04-08 08:20:08 +0200 |
| commit | 4635fbc0201846721287a1eb730491262237babd (patch) | |
| tree | 5b02b41f0099fd9d3af7f3a826ef0ca6dfe80748 /src/scripts/examples | |
| parent | 46f0674e237dd8fe97ba4f0769e18b4adfce841b (diff) | |
Code Style (game + scripts only):
"!=" --> " != " (when needed)
" !=" --> " !="
"!= " --> "!= "
--HG--
branch : trunk
Diffstat (limited to 'src/scripts/examples')
| -rw-r--r-- | src/scripts/examples/example_gossip_codebox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
