Made OpenSearches use the default value instead of setting it to 1.

This commit is contained in:
KrewsOrg 2020-04-21 15:48:53 +01:00
parent 3fabefee76
commit 4056e48643

View File

@ -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;
}