summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-01-19 17:39:25 -0300
committerJesusaves <cpntb1@ymail.com>2024-01-19 17:39:25 -0300
commitf4790a2c911b6b09cc747beb192f2d7733ca7725 (patch)
tree7d727eb37277853e1fbd85b81ad1b23ede3d2d2a /npc
parent98b5f7f49a9c2f44c978c60ae0267087afbea53c (diff)
downloadserverdata-f4790a2c911b6b09cc747beb192f2d7733ca7725.tar.gz
serverdata-f4790a2c911b6b09cc747beb192f2d7733ca7725.tar.bz2
serverdata-f4790a2c911b6b09cc747beb192f2d7733ca7725.tar.xz
serverdata-f4790a2c911b6b09cc747beb192f2d7733ca7725.zip
Semi-fix: Throttle siege attempts to 3 hours rather than promised 24 hours
Diffstat (limited to 'npc')
-rw-r--r--npc/functions/scoreboards.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/functions/scoreboards.txt b/npc/functions/scoreboards.txt
index 18cf75507..aa2e42f18 100644
--- a/npc/functions/scoreboards.txt
+++ b/npc/functions/scoreboards.txt
@@ -103,7 +103,8 @@ OnHour22:
OnHour23:
OnInit:
ScoreboardsReload();
- deletearray $@FORT_BLACKLIST;
+ if (gettime(GETTIME_HOUR) % 3 == 0)
+ deletearray $@FORT_BLACKLIST;
end;
}