diff options
Diffstat (limited to 'npc')
-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; } |