[Classic] Disabled SecondaryAuthData.

This commit is contained in:
MobiusDev 2015-08-22 12:53:40 +00:00
parent 6198fee08e
commit 673aa84ebe

View File

@ -26,6 +26,7 @@ import java.util.logging.Level;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import com.l2jserver.Config;
import com.l2jserver.util.data.xml.IXmlReader;
/**
@ -102,6 +103,10 @@ public class SecondaryAuthData implements IXmlReader
public boolean isEnabled()
{
if (Config.SERVER_CLASSIC_SUPPORT)
{
return false;
}
return _enabled;
}