summaryrefslogtreecommitdiff
path: root/npc/functions/fishing.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-08-21 00:31:32 -0300
committerJesusaves <cpntb1@ymail.com>2021-08-21 00:31:32 -0300
commit04f3475cd0d4554905ba676508173680e6a3d1a6 (patch)
treeebcff40e17034792c9096033a1481a4188330d07 /npc/functions/fishing.txt
parentbedfb2d92efcc7a557c7ad280ae2606980be7842 (diff)
downloadserverdata-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
Diffstat (limited to 'npc/functions/fishing.txt')
-rw-r--r--npc/functions/fishing.txt3
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;
}