From abb7718ad96ff9ef2418395b9e51b356a3d607c9 Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Mon, 17 Apr 2023 00:42:59 +0200 Subject: [PATCH] removed comment to enable conditional showing --- src/core/Global.ttslua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Global.ttslua b/src/core/Global.ttslua index cc3e1824..6c8259b8 100644 --- a/src/core/Global.ttslua +++ b/src/core/Global.ttslua @@ -1059,7 +1059,7 @@ function compareVersion(request) modMeta = JSON.decode(request.text) -- stop here if on latest version or "don't show again" was clicked - --if MOD_VERSION == modMeta["latestVersion"] then return end + if MOD_VERSION == modMeta["latestVersion"] then return end if dontNotify[modMeta["latestVersion"]] then return end local releaseNotes = modMeta["releaseNotes"][modMeta["latestVersion"]]