summaryrefslogtreecommitdiff
path: root/npc/006-1/crazyfefe.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/006-1/crazyfefe.txt')
-rw-r--r--npc/006-1/crazyfefe.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt
index deb8a65cc..05160f254 100644
--- a/npc/006-1/crazyfefe.txt
+++ b/npc/006-1/crazyfefe.txt
@@ -272,7 +272,9 @@ function NextRound {
areamonster "006-1", 20, 20, 70, 60, strmobinfo(1, .@monsterId), .@monsterId, 1, "Crazyfefe::OnPetDeath";
// 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"
- $@FEFE_DIFFICULTY=$@FEFE_DIFFICULTY-(limit(1, .@lv, 25)*6);
+ .@lower=(limit(1, .@lv, 25)*6);
+ .@lower=.@lower*4/10; // 40%
+ $@FEFE_DIFFICULTY=$@FEFE_DIFFICULTY-.@lower;
}
freeloop(false);
return;