summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-10-21 13:50:04 -0300
committerJesusaves <cpntb1@ymail.com>2021-10-21 13:50:04 -0300
commit0b9dbee0e89ac743ed2779c03ff34fd0d501dac2 (patch)
tree5fcadf910587186c27c47326fe0fa7fa9385c1ba
parent1a570ae3f4bbac85852252b32e39999edbc88968 (diff)
downloadserverdata-0b9dbee0e89ac743ed2779c03ff34fd0d501dac2.tar.gz
serverdata-0b9dbee0e89ac743ed2779c03ff34fd0d501dac2.tar.bz2
serverdata-0b9dbee0e89ac743ed2779c03ff34fd0d501dac2.tar.xz
serverdata-0b9dbee0e89ac743ed2779c03ff34fd0d501dac2.zip
Fix a bug where [Spell Book Page] drop rate would be 6% lower in Blue Sage Basement.
-rw-r--r--npc/020-7-1/core.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/020-7-1/core.txt b/npc/020-7-1/core.txt
index f29e0ba8d..e1a70c2fe 100644
--- a/npc/020-7-1/core.txt
+++ b/npc/020-7-1/core.txt
@@ -234,7 +234,7 @@ function script BSProccessDeath {
if (playerattached()) {
getmapxy(.@m$, .@x, .@y, 0);
// Capped at ~12% drop chance of book pages
- if (rand(0,10000) <= 660+(readparam2(bLuck)*6))
+ if (rand(0,10000) <= 660+(readparam2(bLuk)*6))
makeitem SpellBookPage, 1, .@m$, .@x, .@y;
if (rand(0,10000) <= 100)
makeitem Candy, 1, .@m$, .@x, .@y;