diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-27 20:04:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-27 20:04:07 -0300 |
commit | c424c80c97ce83277bdf3ae8fe733c5bc7629115 (patch) | |
tree | b587e258245cc9b9cda7a5c7ecbf8d9c9af453a9 | |
parent | 31615fc21c6c40ef8654d5dfdd65adeabac84efb (diff) | |
download | serverdata-c424c80c97ce83277bdf3ae8fe733c5bc7629115.tar.gz serverdata-c424c80c97ce83277bdf3ae8fe733c5bc7629115.tar.bz2 serverdata-c424c80c97ce83277bdf3ae8fe733c5bc7629115.tar.xz serverdata-c424c80c97ce83277bdf3ae8fe733c5bc7629115.zip |
Raise chance of filling an Iced Bottle on Nivalis Well from 0.11% to 0.33%.
-rw-r--r-- | npc/019-1/well.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/019-1/well.txt b/npc/019-1/well.txt index 57d1194ef..6f90d5fb7 100644 --- a/npc/019-1/well.txt +++ b/npc/019-1/well.txt @@ -148,7 +148,7 @@ L_Bottle: // Calculate how many iced bottles you'll get .@iced=0; for (.@i=0; .@i < .@count; .@i++) { - if (rand(1,1000) < 11) + if (rand2(1,1000) < 33) .@iced++; } |