From e43eecb48a4f1a4ba82f0e45d70c31b6d2a5f2e8 Mon Sep 17 00:00:00 2001 From: KrewsOrg Date: Mon, 29 Apr 2019 02:10:24 +0100 Subject: [PATCH] Fixed black screen hotel view issue for new users. --- src/main/java/com/eu/habbo/habbohotel/users/Habbo.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/users/Habbo.java b/src/main/java/com/eu/habbo/habbohotel/users/Habbo.java index 76b46908..7c74851f 100644 --- a/src/main/java/com/eu/habbo/habbohotel/users/Habbo.java +++ b/src/main/java/com/eu/habbo/habbohotel/users/Habbo.java @@ -468,23 +468,23 @@ public class Habbo implements Runnable public int noobStatus() { - if (this.firstVisit) + /* if (this.firstVisit) { return 2; } int accountAge = Emulator.getIntUnixTimestamp() - this.habboInfo.getAccountCreated(); if (accountAge < (86400)) - { - return 2; - } + { */ + return 1; + /* } if (accountAge < (3 * 86400)) { return 1; } - return 0; + return 0; */ } public void clearCaches()