diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-05-27 20:42:51 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-05-27 20:42:51 -0300 |
commit | c372f5f3c2ff8aaccbc87b8bc9480d979e002a82 (patch) | |
tree | 6e9401e18cb6543b4cf2c697a13625e5ee4775d2 /npc | |
parent | f6da2e9f58afbff5f1029b4dd15a306a34388d49 (diff) | |
download | serverdata-c372f5f3c2ff8aaccbc87b8bc9480d979e002a82.tar.gz serverdata-c372f5f3c2ff8aaccbc87b8bc9480d979e002a82.tar.bz2 serverdata-c372f5f3c2ff8aaccbc87b8bc9480d979e002a82.tar.xz serverdata-c372f5f3c2ff8aaccbc87b8bc9480d979e002a82.zip |
Fix another silly typo
Diffstat (limited to 'npc')
-rw-r--r-- | npc/026-7/boss.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/026-7/boss.txt b/npc/026-7/boss.txt index 82c8cbad0..5ef2d191a 100644 --- a/npc/026-7/boss.txt +++ b/npc/026-7/boss.txt @@ -52,7 +52,7 @@ function _boostMe { .@bcr=getunitdata(.@mg, UDT_CRIT); .@bag=getunitdata(.@mg, UDT_AGI); .@bf = $@MK_CHALLENGE + 2; // The booster from selected difficulty - .@s=.@bf+max(0, (TOP3AVERAGELVL()-100 / 5)); // Over-100 scaling + .@s=.@bf+limit(0, (TOP3AVERAGELVL()-100 / 5), 20); // Over-100 scaling .@bat = .@bat * .@bf / 2; .@bcr = .@bcr * .@bf / 2; setunitdata(.@mg, UDT_ATKMAX, .@bat+(.@s*5)); |