summaryrefslogtreecommitdiff
path: root/npc/006-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-04-17 18:37:06 -0300
committerJesusaves <cpntb1@ymail.com>2019-04-17 18:37:06 -0300
commita79e9ae948cf8b41ad1d0449c1e47353d4d9caee (patch)
treebcbbf653e7d5d02dfd6420ab5955e72e9ba2b8d3 /npc/006-1
parent32c56e35393364bf7d302fa5f24c6ce4558237cc (diff)
downloadserverdata-a79e9ae948cf8b41ad1d0449c1e47353d4d9caee.tar.gz
serverdata-a79e9ae948cf8b41ad1d0449c1e47353d4d9caee.tar.bz2
serverdata-a79e9ae948cf8b41ad1d0449c1e47353d4d9caee.tar.xz
serverdata-a79e9ae948cf8b41ad1d0449c1e47353d4d9caee.zip
Fix bug introduced on previous commit
Diffstat (limited to 'npc/006-1')
-rw-r--r--npc/006-1/crazyfefe.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt
index 17c3ec00f..eb0a16eae 100644
--- a/npc/006-1/crazyfefe.txt
+++ b/npc/006-1/crazyfefe.txt
@@ -191,7 +191,7 @@ function CaveLogic {
// Victory conditions: Too few players are alive OR twenty minutes went on.
// WARNING, dead players still in cave are counted, we might never finish the fight.
// And a GM might be called to ban everyone inside.
- if ($@FEFE_CAVE_PLAYER_COUNT <= 1 && !$@GM_OVERRIDE || $@FEFE_DELAY < gettimetick(2) - (60*20)) {
+ if ($@FEFE_CAVE_PLAYER_COUNT <= 1 && !$@GM_OVERRIDE || gettimetick(2) >= $@FEFE_DELAY - 300) {
CleanUp();
}