Support for Classic client.

This commit is contained in:
MobiusDev
2015-04-30 18:40:48 +00:00
parent cac02e4140
commit e096946601
15 changed files with 53097 additions and 36 deletions

View File

@ -149,6 +149,10 @@ public interface IXmlReader
{
for (File f : files)
{
if (!Config.SERVER_CLASSIC_SUPPORT && f.getName().contains("classic"))
{
continue;
}
if (recursive && f.isDirectory())
{
parseDirectory(f, recursive);