From 41eff54ca9372c845f69b715ca0fcc737b00eb20 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 18 Jun 2022 15:00:52 +0800 Subject: + dont set inquis's as urs if u tp to them (check is based off inquis hp) --- features/changeLogGUI/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'features/changeLogGUI') diff --git a/features/changeLogGUI/index.js b/features/changeLogGUI/index.js index ffd826b..6b50fdb 100644 --- a/features/changeLogGUI/index.js +++ b/features/changeLogGUI/index.js @@ -45,7 +45,7 @@ class ChangeLogGui extends Feature { } let alertBeta = this.FeatureManager.features["globalSettings"].class.alertAllUpdates.getValue() - if (this.latestAnnouncedVersion < alertBeta ? this.ChangelogPage.downloadableVersion : this.ChangelogPage.importantVersion) { + if (this.latestAnnouncedVersion < (alertBeta ? this.ChangelogPage.downloadableVersion : this.ChangelogPage.importantVersion)) { let version = "" this.ChangelogPage.changelogData.forEach(data => { -- cgit