mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 22:01:30 +00:00
22 lines
466 B
C#
22 lines
466 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
using EQExtractor2.InternalTypes;
|
|
using EQExtractor2.OpCodes;
|
|
using EQPacket;
|
|
using MyUtils;
|
|
|
|
namespace EQExtractor2.Patches
|
|
{
|
|
class PatchOct202010Decoder : PatchTestSep222010Decoder
|
|
{
|
|
public PatchOct202010Decoder()
|
|
{
|
|
Version = "EQ Client Build Date October 20 2010.";
|
|
|
|
ExpectedPPLength = 27816;
|
|
|
|
PPZoneIDOffset = 20484;
|
|
}
|
|
}
|
|
} |