diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-08-13 12:00:28 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-08-13 12:00:28 -0300 |
commit | 1f59afc6943df841b7ba0caba221cf6e5de41ef8 (patch) | |
tree | 83c3caea05fd363f449b1d17738eda4842f21980 /npc | |
parent | 253e46e63767b07b49dee7c1735f8bd092b96841 (diff) | |
download | serverdata-1f59afc6943df841b7ba0caba221cf6e5de41ef8.tar.gz serverdata-1f59afc6943df841b7ba0caba221cf6e5de41ef8.tar.bz2 serverdata-1f59afc6943df841b7ba0caba221cf6e5de41ef8.tar.xz serverdata-1f59afc6943df841b7ba0caba221cf6e5de41ef8.zip |
Fix typo
Diffstat (limited to 'npc')
-rw-r--r-- | npc/006-1/crazyfefe.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt index 2688d00ef..4803c7baa 100644 --- a/npc/006-1/crazyfefe.txt +++ b/npc/006-1/crazyfefe.txt @@ -328,7 +328,7 @@ function NextRound { case 21: .@monsterId = any(Forain, Archant, BlackMamba, JackO, TerraniteProtector, EliteDuck) ; break; default: - if ($@FEFE_DIFFICULTY <= 100) // Up to Monster King Mode + if (.DIFFICULTY <= 100) // Up to Monster King Mode .@monsterId = any(GoboBear, GiantMutatedBat, TerraniteProtector, Reaper); else // Above MK mode .@monsterId = any(GoboBear, GiantMutatedBat, TerraniteProtector, Reaper, SmokeDragon, NightmareDragon, Jhon, Mandragora, Junglefowl, SuperiorShroom, Nutcracker, Golem, ShadowTortuga); @@ -339,7 +339,7 @@ function NextRound { // We must lower difficulty according to summoned monster. Only 60% is lowered. // If total level exceeds 250, it will cap at that to prevent excessive "slooping" // This is disabled if you're playing above Moubootaur Mode - if ($@FEFE_DIFFICULTY <= 250) + if (.DIFFICULTY <= 250) .@lower=(limit(1, .@lv, 25)*6); else .@lower=(max(1, .@lv)*6); |