Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
)
@Slf4j
public class AutoFishingPlugin extends Plugin {
static final String version = "1.0.7";
static final String version = "1.0.8";
@Inject
private AutoFishingConfig config;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public enum FishingMethod {
CAGE(List.of("Cage"), List.of("Lobster pot"), 40),
SANDWORMS(List.of("Sandworms", "Bait"), List.of("Fishing rod", "Sandworms"), 15),
KARAMBWAN_VESSEL(List.of("Fish"), List.of("Karambwan vessel", "Raw karambwanji"), 65),
BARBARIAN_ROD(List.of("Use-rod"), List.of("Barbarian rod"), 48),
BARBARIAN_ROD(List.of("Use-rod"), List.of("Barbarian rod", "Feather"), 48),
OILY_ROD(List.of("Bait"), List.of("Oily fishing rod", "Fishing bait"), 53),
INFERNAL_EEL_BAIT(List.of("Bait"), List.of("Oily fishing rod", "Fishing bait", "Hammer"), 80),
DARK_CRAB_BAIT(List.of("Cage"), List.of("Lobster pot", "Dark fishing bait"), 85),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ && isInWintertodtRegion()
// Quick Fletch Items (Logs -> Bows, etc.)
if (config.quickFletchItems()
&& !isInWintertodtRegion()
&& event.getItemId() == ItemID.KNIFE
&& (event.getItemId() == ItemID.KNIFE || event.getItemId() == ItemID.FLETCHING_KNIFE)
&& "Use".equals(event.getOption()))
{
modifyMenuEntry(event, "<col=FFA500>Quick fletch: </col>", config.fletchingItem().getName(), this::quickFletchLogsOnClick);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
)
@Slf4j
public class AutoWoodcuttingPlugin extends Plugin {
public static final String version = "1.8.0";
public static final String version = "1.8.1";
@Inject
@Getter(AccessLevel.MODULE)
public AutoWoodcuttingScript autoWoodcuttingScript;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private void handleWoodcutting(AutoWoodcuttingConfig config) {
.where(x -> patchIds.contains(x.getId()))
.nearest();
} else {
tree = rs2TileObjectCache.query().within(getInitialPlayerLocation(), config.distanceToStray()).withName(treeType.getName()).nearest();
tree = rs2TileObjectCache.query().within(getInitialPlayerLocation(), config.distanceToStray()).withName(treeType.getName()).nearestOnClientThread();
}

if (tree != null) {
Expand Down