From d645465da891f044efefce6262091d397b1d2e9a Mon Sep 17 00:00:00 2001 From: Alejandro <25-alejandro@users.noreply.git.krews.org> Date: Sat, 8 Feb 2020 18:14:47 +0200 Subject: [PATCH] Remove time from creation date in profile composer --- .../eu/habbo/messages/outgoing/users/UserProfileComposer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/eu/habbo/messages/outgoing/users/UserProfileComposer.java b/src/main/java/com/eu/habbo/messages/outgoing/users/UserProfileComposer.java index 6a9cdf33..eecb7858 100644 --- a/src/main/java/com/eu/habbo/messages/outgoing/users/UserProfileComposer.java +++ b/src/main/java/com/eu/habbo/messages/outgoing/users/UserProfileComposer.java @@ -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) {