Fixed offline traders reconnection issue.
This commit is contained in:
@ -550,7 +550,7 @@ public class LoginServerThread extends Thread
|
|||||||
{
|
{
|
||||||
if (client.isDetached())
|
if (client.isDetached())
|
||||||
{
|
{
|
||||||
client.closeNow();
|
client.getActiveChar().logout();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -211,7 +211,7 @@ public final class AntiFeedManager
|
|||||||
*/
|
*/
|
||||||
public final void onDisconnect(L2GameClient client)
|
public final void onDisconnect(L2GameClient client)
|
||||||
{
|
{
|
||||||
if (client == null)
|
if ((client == null) || client.isDetached())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user