Implemented the player portion of the new actor system.

This commit is contained in:
Filip Maj 2016-01-02 18:17:03 -05:00
parent 93a42c1ba3
commit 360d72b376
9 changed files with 117 additions and 44 deletions

View file

@ -186,7 +186,7 @@ namespace FFXIVClassic_Map_Server
return luaParams;
}
public static List<LuaParam> createLuaParamList(object[] list)
public static List<LuaParam> createLuaParamList(params object[] list)
{
List<LuaParam> luaParams = new List<LuaParam>();
@ -218,7 +218,7 @@ namespace FFXIVClassic_Map_Server
}
return luaParams;
}
}
public static object[] createLuaParamObjectList(List <LuaParam> luaParams)
{