I trying to "fix" one problem in one game, there is .cpp file, and two version, maybe i found bag. What diference beetwen this 2 examples of code:
Example #1
// not supposed to do anything while evocate
if (m_creature->HasAura(SPELL_EVOCATION))
{
return;
}
Example #2
// not supposed to do anything while evocate
if (m_creature->HasAura(SPELL_EVOCATION))
return;
Maybe it`s stupid question, i am not C++ developer, just knew only python and i am newbie . So what the diference in logic of this code? Thanks alot.