diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-08-21 00:31:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-08-21 00:31:32 -0300 |
commit | 04f3475cd0d4554905ba676508173680e6a3d1a6 (patch) | |
tree | ebcff40e17034792c9096033a1481a4188330d07 | |
parent | bedfb2d92efcc7a557c7ad280ae2606980be7842 (diff) | |
download | serverdata-04f3475cd0d4554905ba676508173680e6a3d1a6.tar.gz serverdata-04f3475cd0d4554905ba676508173680e6a3d1a6.tar.bz2 serverdata-04f3475cd0d4554905ba676508173680e6a3d1a6.tar.xz serverdata-04f3475cd0d4554905ba676508173680e6a3d1a6.zip |
Remember the fisher what you'll use without needing the extra click
-rw-r--r-- | npc/functions/fishing.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/functions/fishing.txt b/npc/functions/fishing.txt index e6d4adbbb..103784c5e 100644 --- a/npc/functions/fishing.txt +++ b/npc/functions/fishing.txt @@ -286,11 +286,12 @@ function script fishing { if (GSET_FISHING_BAIT > 1) { .@bait = GSET_FISHING_BAIT; + mesc l("Maybe a %s?", getitemlink(GSET_FISHING_BAIT)); } else { mes "##B" + l("Drag and drop an item from your inventory.") + "##b"; .@bait = requestitem(); - if (GSET_FISHING_BAIT) + if (.@bait > 1 && GSET_FISHING_BAIT) GSET_FISHING_BAIT = .@bait; } |