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