diff options
author | jesusalva <cpntb1@ymail.com> | 2018-03-04 02:16:52 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-03-04 02:16:52 -0300 |
commit | 453aa4102404a6cff0c7ce9bb77aeba1b7c7160b (patch) | |
tree | 56691bded4ba9b1fa320c5b758db9852fb733368 /npc/functions/fishing.txt | |
parent | 99e704482ebd9fbb4f286a674c25e18877c07513 (diff) | |
download | serverdata-453aa4102404a6cff0c7ce9bb77aeba1b7c7160b.tar.gz serverdata-453aa4102404a6cff0c7ce9bb77aeba1b7c7160b.tar.bz2 serverdata-453aa4102404a6cff0c7ce9bb77aeba1b7c7160b.tar.xz serverdata-453aa4102404a6cff0c7ce9bb77aeba1b7c7160b.zip |
"fix" fishing. It should work, just not like it is supposed to.
Diffstat (limited to 'npc/functions/fishing.txt')
-rw-r--r-- | npc/functions/fishing.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/functions/fishing.txt b/npc/functions/fishing.txt index 37a896f28..077e806b0 100644 --- a/npc/functions/fishing.txt +++ b/npc/functions/fishing.txt @@ -1,3 +1,4 @@ +// TMW2 Script // Evol functions. // Authors: // gumi @@ -190,8 +191,10 @@ function script fishing { { // TODO: rare fish array .@fish_id = .@rare_id; + } else { + // TODO: else common fish array + .@fish_id = .@rare_id; } - // TODO: else common fish array // RNG to obtain a fish if (rand(gettimetick(0) - @fishing_tick) <= .@pull_rand_max) |