From 4056e48643d4f24bedf0a5854a3dbe6edb82490e Mon Sep 17 00:00:00 2001 From: KrewsOrg Date: Tue, 21 Apr 2020 15:48:53 +0100 Subject: [PATCH] Made OpenSearches use the default value instead of setting it to 1. --- .../eu/habbo/habbohotel/users/HabboNavigatorWindowSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/users/HabboNavigatorWindowSettings.java b/src/main/java/com/eu/habbo/habbohotel/users/HabboNavigatorWindowSettings.java index 88c37d56..caaaf4b8 100644 --- a/src/main/java/com/eu/habbo/habbohotel/users/HabboNavigatorWindowSettings.java +++ b/src/main/java/com/eu/habbo/habbohotel/users/HabboNavigatorWindowSettings.java @@ -31,7 +31,7 @@ public class HabboNavigatorWindowSettings { this.y = set.getInt("y"); this.width = set.getInt("width"); this.height = set.getInt("height"); - this.openSearches = set.getString("open_searches").equals("1"); + this.openSearches = set.getBoolean("open_searches"); this.unknown = 0; }