Fix bug where lastOnline stat for clans wasn't properly loading on server transfer.
This commit is contained in:
parent
4e045f438d
commit
36a22caa1e
@ -105,7 +105,7 @@ public class ClanInfo
|
||||
_admin = token.Admin;
|
||||
|
||||
_dateCreated = (token.DateCreated != null) ? token.DateCreated : new Timestamp(System.currentTimeMillis());
|
||||
_lastOnline = token.LastOnline;
|
||||
_lastOnline = (token.LastOnline != null) ? token.LastOnline : new Timestamp(System.currentTimeMillis());
|
||||
|
||||
for (ClanMemberToken memberToken : token.Members)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user