mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 09:31:30 +00:00
23 lines
568 B
C#
23 lines
568 B
C#
using System;
|
|
using System.IO;
|
|
using System.Diagnostics;
|
|
using System.Collections.Generic;
|
|
using EQExtractor2.InternalTypes;
|
|
using EQExtractor2.OpCodes;
|
|
using EQPacket;
|
|
using MyUtils;
|
|
|
|
namespace EQExtractor2.Patches
|
|
{
|
|
class PatchTestServerFebruary52013Decoder : PatchJanuary162013Decoder
|
|
{
|
|
public PatchTestServerFebruary52013Decoder()
|
|
{
|
|
Version = "EQ Client Build Date Test Server February 5 2013.";
|
|
|
|
PatchConfFileName = "patch_TestServer-Feb5-2013.conf";
|
|
|
|
SupportsSQLGeneration = false;
|
|
}
|
|
}
|
|
} |