Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions scripts/ebounty.lic
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@
game: Gemstone
tags: bounty, adventure's guild, advguild, bounties
required: Lich >= 5.12.10
version: 1.9.2
version: 1.9.3

Version Control:
Major_change.feature_addition.bugfix
v1.9.3 (2025-02-04)
- bugfix in forage_find room
v1.9.2 (2025-01-27)
- add CLI support for ;ebounty forage bounty
- add CLI support for ;ebounty forage "herb" <qty> "location"
Expand Down Expand Up @@ -2956,7 +2958,7 @@ module EBounty
location_list = location_list.first(10)

location_list.each do |room|
next if room.id.eql?(Room.current.id)
next if room.eql?(Room.current.id)
if Room.current.path_to(room).nil?
location_list.delete(room)
else
Expand All @@ -2978,7 +2980,7 @@ module EBounty
location_list = location_list.sort { |a, b| shortest_distances[a] <=> shortest_distances[b] }

location_list.each do |room|
next if room.id.eql?(Room.current.id)
next if room.eql?(Room.current.id)
if Room.current.path_to(room).nil?
location_list.delete(room)
else
Expand Down