diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-1/eugene.txt | 1 | ||||
-rw-r--r-- | npc/functions/fishing.txt | 13 |
2 files changed, 7 insertions, 7 deletions
diff --git a/npc/001-1/eugene.txt b/npc/001-1/eugene.txt index b51248ca..e9ba951a 100644 --- a/npc/001-1/eugene.txt +++ b/npc/001-1/eugene.txt @@ -64,6 +64,7 @@ L_CheckItems: l("Have a good fishing!"); delitem .BaitID, .BaitCount; + additem FishingRod, 1; setq ArtisQuests_Fishman, 2; close; diff --git a/npc/functions/fishing.txt b/npc/functions/fishing.txt index 08dd0b1a..4d754adc 100644 --- a/npc/functions/fishing.txt +++ b/npc/functions/fishing.txt @@ -18,13 +18,12 @@ function script fishing { setarray .@bait_ids[0], SmallTentacles, Bread, Aquada, UrchinMeat, TortugaTongue, Tentacles; - // if (countitem(FishingRod) < 1) - // { - // narrator - // l("You don't have a @@", getitemlink(FishingRod)); - // return -1; - // } - + if (countitem(FishingRod) < 1) + { + narrator + l("You don't have a @@.", getitemlink(FishingRod)); + return -1; + } L_ChooseBait: .@curr_wait_times = 0; |