mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Fixed crash due to bad constructor for QuestDirectorMan0L001. Unsigned integers will also write out as lua 0-datatype.
This commit is contained in:
@@ -121,7 +121,11 @@ namespace FFXIVClassic_Map_Server
|
||||
{
|
||||
foreach (LuaParam l in luaParams)
|
||||
{
|
||||
writer.Write((Byte)l.typeID);
|
||||
if (l.typeID == 0x1)
|
||||
writer.Write((Byte)0);
|
||||
else
|
||||
writer.Write((Byte)l.typeID);
|
||||
|
||||
switch (l.typeID)
|
||||
{
|
||||
case 0x0: //Int32
|
||||
|
Reference in New Issue
Block a user