diff options
Diffstat (limited to 'features/globalSettings/index.js')
-rw-r--r-- | features/globalSettings/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/features/globalSettings/index.js b/features/globalSettings/index.js index a72c2b0..25b2eaf 100644 --- a/features/globalSettings/index.js +++ b/features/globalSettings/index.js @@ -89,7 +89,7 @@ class GlobalSettings extends Feature { let hasHost = false for (let host of Java.type("gg.essential.util.TrustedHostsUtil").INSTANCE.getTrustedHosts()) { - if (host.getName() === "soopymc") { + if (host.getName() === "soopy.dev") { hasHost = true } } @@ -100,7 +100,7 @@ class GlobalSettings extends Feature { let hosts = new TreeSet() hosts.add("soopy.dev") - let host = new TrustedHost(124123, "soopymc", hosts) + let host = new TrustedHost(124123, "soopy.dev", hosts) Java.type("gg.essential.util.TrustedHostsUtil").INSTANCE.addTrustedHost(host) } |