Remove time from creation date in profile composer

This commit is contained in:
Alejandro 2020-02-08 18:14:47 +02:00
parent 867e5cf7e6
commit d645465da8

View File

@ -46,7 +46,7 @@ public class UserProfileComposer extends MessageComposer {
this.response.appendString(this.habboInfo.getUsername());
this.response.appendString(this.habboInfo.getLook());
this.response.appendString(this.habboInfo.getMotto());
this.response.appendString(new SimpleDateFormat("dd-MM-yyyy HH:mm:ss").format(new Date(this.habboInfo.getAccountCreated() * 1000L)));
this.response.appendString(new SimpleDateFormat("dd-MM-yyyy").format(new Date(this.habboInfo.getAccountCreated() * 1000L)));
int achievementScore = 0;
if (this.habbo != null) {