Fix GetStandState

Wrong return amount
This commit is contained in:
Rochet2
2015-01-17 15:05:11 +02:00
parent c486e02d10
commit 044b014476

View File

@@ -523,7 +523,7 @@ namespace LuaUnit
int GetStandState(Eluna* /*E*/, lua_State* L, Unit* unit)
{
Eluna::Push(L, unit->getStandState());
return 0;
return 1;
}
int GetDisplayId(Eluna* /*E*/, lua_State* L, Unit* unit)