Don't unload partner data when checking last login. Fixes #23

This commit is contained in:
Lennart ten wolde 2017-02-08 16:25:10 +01:00
parent ae65735ff9
commit 98e65fc934
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public class CommandSeen extends Command {
reply(Message.ONLINE_SINCE, format(time));
} else {
long time = System.currentTimeMillis() - mp.getLastLogout();
((MarriageCore) this.marriage).unloadPlayer(marriage.getOtherPlayer(player.getUniqueId()));
// ((MarriageCore) this.marriage).unloadPlayer(marriage.getOtherPlayer(player.getUniqueId()));
reply(Message.OFFLINE_SINCE, format(time));
}
}