summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-04-17 01:12:45 -0300
committerJesusaves <cpntb1@ymail.com>2020-04-17 01:12:45 -0300
commit18fa76176de34695799390c22b24e70c6bfe4134 (patch)
tree801b0c8019ad30ee670fcbc88618ce4ccbcd7fb0
parentf00fad385eadb6b50335a300d75b806621fa417b (diff)
downloadserverdata-18fa76176de34695799390c22b24e70c6bfe4134.tar.gz
serverdata-18fa76176de34695799390c22b24e70c6bfe4134.tar.bz2
serverdata-18fa76176de34695799390c22b24e70c6bfe4134.tar.xz
serverdata-18fa76176de34695799390c22b24e70c6bfe4134.zip
Ensure Karma is NEVER, EVER set to non-zero
-rw-r--r--npc/functions/clientversion.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt
index ab50212dc..004751099 100644
--- a/npc/functions/clientversion.txt
+++ b/npc/functions/clientversion.txt
@@ -903,8 +903,12 @@ function script clientupdater {
}
// Just be sure your client version is OK
-// NOTE: Current master client version is 26
+// NOTE: Current master client version is 26, but M+ 1.9.3.23 is still at 25
function script checkclientversion {
+ // Destroy Karma, regardless of version and perpetually
+ Karma=0;
+
+ // Minimum version
if (ClientVersion >= 25)
return;