fixed death/despawning kinda (need to figure out why hp wont tick down after respawning)

This commit is contained in:
Tahir Akhlaq 2017-09-03 01:01:19 +01:00
parent c5cc7c2f00
commit 4978813c27
16 changed files with 251 additions and 106 deletions

View file

@ -116,6 +116,12 @@ namespace FFXIVClassic_Map_Server
public static void WriteLuaParams(BinaryWriter writer, List<LuaParam> luaParams)
{
if (luaParams == null)
{
Program.Log.Error("LuaUtils.WriteLuaParams LuaParams are null!");
return;
}
foreach (LuaParam l in luaParams)
{
if (l.typeID == 0x1)