Eluna: Correct whitespace

This commit is contained in:
Rochet2
2014-09-20 22:07:24 +03:00
parent 2f17600f43
commit 4784c2052a
14 changed files with 308 additions and 307 deletions

View File

@@ -28,19 +28,19 @@ struct ScriptedAI;
using namespace HookMgr;
/*
Call model for EventBind:
// Begin the call if should
EVENT_BEGIN(bindmap, eventid, return returnvalue);
// push arguments
Push(L, pPlayer);
EVENT_EXECUTE(returnedargs);
FOR_RET(iter)
{
// process returned arguments
}
ENDCALL();
*/
* Call model for EventBind:
*
* // Begin the call if should
* EVENT_BEGIN(bindmap, eventid, return returnvalue);
* // push arguments
* Push(L, pPlayer);
* EVENT_EXECUTE(returnedargs);
* FOR_RET(iter)
* {
* // process returned arguments
* }
* ENDCALL();
*/
// RET is a return statement
#define EVENT_BEGIN(BINDMAP, EVENT, RET) \
@@ -1456,11 +1456,11 @@ struct ElunaCreatureAI : ScriptedAI
#define me m_creature
#endif
ElunaCreatureAI(Creature* creature): ScriptedAI(creature)
ElunaCreatureAI(Creature* creature) : ScriptedAI(creature)
{
JustRespawned();
}
~ElunaCreatureAI() {}
~ElunaCreatureAI() { }
//Called at World update tick
#ifndef TRINITY