diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-02-22 14:30:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-02-22 14:31:04 -0300 |
commit | 69de709b72b3e6d2e0ed6a448fb1c5abf08b8d2a (patch) | |
tree | 4b207eecf56b62bcc97e8c1c55ab37ac9151fd00 | |
parent | d815c62c104c78b5beaec5aab280627684232083 (diff) | |
download | serverdata-69de709b72b3e6d2e0ed6a448fb1c5abf08b8d2a.tar.gz serverdata-69de709b72b3e6d2e0ed6a448fb1c5abf08b8d2a.tar.bz2 serverdata-69de709b72b3e6d2e0ed6a448fb1c5abf08b8d2a.tar.xz serverdata-69de709b72b3e6d2e0ed6a448fb1c5abf08b8d2a.zip |
This seems like a typo
-rw-r--r-- | npc/026-0/ctrl.c | 2 | ||||
-rw-r--r-- | npc/026-1/ctrl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/026-0/ctrl.c b/npc/026-0/ctrl.c index c201c2641..b490ab028 100644 --- a/npc/026-0/ctrl.c +++ b/npc/026-0/ctrl.c @@ -13,7 +13,7 @@ OnTouch: if (getq(General_Fortress) > 1) goto L_Warp; mesc l(".:: Impregnable Fortress, %sF ::.", "B0"), 3; msObjective(getq(General_Fortress) == 2, l("* Solo \"The Yetifly\"")); - msObjective($MK_TEMPVAR < MKIF_LV_B0F, l("Minimum wins: %d/%d", $MK_TEMPVAR, MKIF_LV_B1F)); + msObjective($MK_TEMPVAR < MKIF_LV_B1F, l("Minimum wins: %d/%d", $MK_TEMPVAR, MKIF_LV_B1F)); mes ""; mesc l("Hint: Stomp! Stomp! Stomp! Walk around."); end; diff --git a/npc/026-1/ctrl.c b/npc/026-1/ctrl.c index 26bb478a6..b8a1e9fab 100644 --- a/npc/026-1/ctrl.c +++ b/npc/026-1/ctrl.c @@ -13,7 +13,7 @@ OnTouch: if (getq(General_Fortress) > 1) goto L_Warp; mesc l(".:: Impregnable Fortress, %sF ::.", "B1"), 3; msObjective(getq(General_Fortress) == 2, l("* Obtain clearance")); - msObjective($MK_TEMPVAR < MKIF_LV_B1F, l("Minimum wins: %d/%d", $MK_TEMPVAR, MKIF_LV_B2F)); + msObjective($MK_TEMPVAR < MKIF_LV_B2F, l("Minimum wins: %d/%d", $MK_TEMPVAR, MKIF_LV_B2F)); mes ""; mesc l("Hint: You might need to come back later."); end; |