diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-10-26 19:07:12 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-10-26 19:07:12 -0300 |
commit | f67ea6197c4536e2272fd82835f040be79a8a216 (patch) | |
tree | c4f29884af8ac7b78502ee8d3754728e909cad03 | |
parent | 4da4af22f9cfae15f7dbcf87c08db05cf32ed61a (diff) | |
download | serverdata-f67ea6197c4536e2272fd82835f040be79a8a216.tar.gz serverdata-f67ea6197c4536e2272fd82835f040be79a8a216.tar.bz2 serverdata-f67ea6197c4536e2272fd82835f040be79a8a216.tar.xz serverdata-f67ea6197c4536e2272fd82835f040be79a8a216.zip |
In Hardcore Servers, do not require the min. siege victories for Fortress.
-rw-r--r-- | npc/functions/goodbye.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/goodbye.txt b/npc/functions/goodbye.txt index 07697885f..e0f93c417 100644 --- a/npc/functions/goodbye.txt +++ b/npc/functions/goodbye.txt @@ -158,7 +158,7 @@ function script goodbye2 { function script fortwarp { // Not unlocked - if ($GAME_STORYLINE >= 3 && $MK_TEMPVAR < getarg(0)) { + if ($GAME_STORYLINE >= 3 && $MK_TEMPVAR < getarg(0) && !$HARDCORE) { mesc l("The gate is sealed shut."), 1; mesc l("The monster army is still strong on this floor!"), 1; mesc l("Minimum wins: %d/%d", $MK_TEMPVAR, getarg(0)), 1; |