Fix bug where lastOnline stat for clans wasn't properly loading on server transfer.

This commit is contained in:
Ty Sayers 2015-08-29 18:23:04 -07:00
parent 4e045f438d
commit 36a22caa1e

View File

@ -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)
{