diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-06-14 20:42:51 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-06-14 20:42:51 -0300 |
commit | c78d3443af3f7249be571387886794e44c9f6373 (patch) | |
tree | daf71f4c85f341817d55de4da90fc706ec72f0ee | |
parent | 04c8d5bd37832a4698a38c7adee9bdd55792513d (diff) | |
download | serverdata-c78d3443af3f7249be571387886794e44c9f6373.tar.gz serverdata-c78d3443af3f7249be571387886794e44c9f6373.tar.bz2 serverdata-c78d3443af3f7249be571387886794e44c9f6373.tar.xz serverdata-c78d3443af3f7249be571387886794e44c9f6373.zip |
I blame Specing for this commit
-rw-r--r-- | db/constants.conf | 2 | ||||
-rw-r--r-- | npc/functions/clientversion.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/db/constants.conf b/db/constants.conf index 9c6baf0c8..ef1023d5a 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -2573,7 +2573,7 @@ constants_db: { BCONFN_DROP: 7 BCONFD_DROP: 0 SHOPWAIT: 1750 // Time to wait for price initialization - BAZAARFREQ: 8 // How many weeks between bazaars + BAZAARFREQ: 9 // How many weeks between bazaars INT_MAX: 2147483647 comment__: "Maze Domain constants" diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 8408dfc1e..d2c7ca688 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -23,8 +23,8 @@ function script clientupdater { .@v3=getstatus(SC_JAILED, 3); .@v4=getstatus(SC_JAILED, 4); .@ti=getstatus(SC_JAILED, 5); - consolebug("Please reduce sentence from %d to %d (in %d)", .@v1, max(1, .@v1-##HARDCORE_JAILTIME+1), (##HARDCORE_JAILTIME-1)); - .@v1 = max(1, .@v1-##HARDCORE_JAILTIME+1); + consolebug("Please reduce sentence from %d to %d (in %d)", .@v1, max(2, .@v1-##HARDCORE_JAILTIME+1), (##HARDCORE_JAILTIME-1)); + .@v1 = max(2, .@v1-##HARDCORE_JAILTIME+1); if (.@ti > 60000) .@ti = max(60000, .@ti - ((##HARDCORE_JAILTIME+1) * 60000)); //sc_end SC_JAILED; |