mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-14 16:34:42 +02:00
Realized the start event packet after a zoneIn kickevent is weird and malformed, fixed for that usecase. Fixed bug with getting PrivateArea script. Missing area scripts now don't show a message (they were optional). Finished scripting out Limsa opening battle.
This commit is contained in:
parent
545ce18f1f
commit
77e0639410
3 changed files with 9 additions and 4 deletions
|
@ -63,7 +63,10 @@ namespace FFXIVClassic_Map_Server.packets.receive.events
|
|||
|
||||
binReader.BaseStream.Seek(0x31, SeekOrigin.Begin);
|
||||
|
||||
luaParams = LuaUtils.ReadLuaParams(binReader);
|
||||
if (binReader.PeekChar() == 0x1)
|
||||
luaParams = new List<LuaParam>();
|
||||
else
|
||||
luaParams = LuaUtils.ReadLuaParams(binReader);
|
||||
}
|
||||
catch (Exception){
|
||||
invalidPacket = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue