Fix zone determine (#58)

This commit is contained in:
ksh 2021-12-08 14:20:51 +09:00 committed by GitHub
parent 375583e8ee
commit 89d30f7690
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -7,5 +7,5 @@ OpFate=742
OpDuty=226 OpDuty=226
OpMatch=791 OpMatch=791
OpInstance=213 OpInstance=213
OpZone=0 OpZone=144
OpSouthernBozja=0 OpSouthernBozja=0

View file

@ -1494,7 +1494,7 @@ namespace DutyContent.Tab
// Middle La Noscea (134) // Middle La Noscea (134)
var h = BitConverter.ToUInt32(data, 0); var h = BitConverter.ToUInt32(data, 0);
var z = BitConverter.ToUInt16(data, 4); var z = BitConverter.ToUInt16(data, 4);
if (h == 0 && z == 134 && data[11] == 1 && data[12] == 1 && data[13] == 8) if (h == 0 && z == 134)
{ {
_new_packet.OpZone = opcode; _new_packet.OpZone = opcode;