From a8a5a3f8c2c0c0897006a6a68cf4fb1eba2b9f9f Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 7 May 2022 15:42:00 +0800 Subject: + remove update button patcher module (removed soopyv2 from ct website) + updating will be same as updatebuttonpatcher used to be, but built into soopyv2 + new version avalible chat message + show other player's inquis waypoints --- featureClass/class.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'featureClass') diff --git a/featureClass/class.js b/featureClass/class.js index 04e9552..d595e4b 100644 --- a/featureClass/class.js +++ b/featureClass/class.js @@ -173,7 +173,8 @@ class Event { } update() { - if (this.enabled === this.when()) return + let shouldBeEnabled = !!this.when() + if (this.enabled === shouldBeEnabled) return if (this.enabled) { this.unregister() -- cgit