Skip to content
This repository was archived by the owner on Feb 9, 2022. It is now read-only.

Commit a0bc24f

Browse files
ExplvExplv
Explv
authored and
Explv
committed
Fix fire lighting
1 parent 5c33d6a commit a0bc24f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/script/TutorialIsland.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import org.osbot.rs07.script.ScriptManifest;
55
import sections.*;
66

7-
@ScriptManifest(author = "Explv", name = "Explv's Tutorial Island", info = "Completes Tutorial Island", version = 5.7, logo = "")
7+
@ScriptManifest(author = "Explv", name = "Explv's Tutorial Island", info = "Completes Tutorial Island", version = 5.8, logo = "")
88
public final class TutorialIsland extends Script {
99

1010
private final TutorialSection rsGuideSection = new RuneScapeGuideSection();

src/sections/SurvivalSection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public final void onLoop() throws InterruptedException {
5858
getTabs().open(Tab.INVENTORY);
5959
} else if (getInventory().getAmount(item -> item.getName().contains("shrimp")) < 2) {
6060
fish();
61-
} else if (getObjects().closest("Fire") == null) {
61+
} else if (getObjects().closest("Fire") == null || getWidgets().getWidgetContainingText("time to light a fire") != null) {
6262
if (!getInventory().contains("Logs")) {
6363
chopTree();
6464
} else {

0 commit comments

Comments
 (0)