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

Commit cf7cba5

Browse files
ExplvExplv
authored andcommitted
- Fix smelting interface bar selection
1 parent 99d468a commit cf7cba5

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

AIO/src/org/aio/activities/skills/smithing/Bar.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
public enum Bar {
66

77
BRONZE("Bronze bar", 1, true, new ItemReq("Copper ore", 1), new ItemReq("Tin ore", 1)),
8-
BLURITE("Blurite bar", 8, false, new ItemReq("Blurite ore", 1)),
98
IRON("Iron bar", 15, true, new ItemReq("Iron ore", 1)),
109
SILVER ("Silver bar", 20, false, new ItemReq("Silver ore", 1)),
1110
STEEL("Steel bar", 30, true, new ItemReq("Coal", 2), new ItemReq("Iron ore", 1)),

AIO/src/org/aio/activities/skills/smithing/smelting/SmeltingActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public SmeltingActivity(final Bar bar, final SmeltLocation smeltLocation) {
2626

2727
@Override
2828
public void onStart() {
29-
makeAllInterface = new MakeAllInterface(bar.ordinal() + 1);
29+
makeAllInterface = new MakeAllInterface(bar.toString());
3030
makeAllInterface.exchangeContext(getBot());
3131

3232
bankNode = new ItemReqBanking(bar.oresRequired);

AIO/src/org/aio/script/AIO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
@ScriptManifest(author = "Explv", name = "Explv's AIO " + AIO.VERSION, info = "AIO", version = 0, logo = "http://i.imgur.com/58Zz0fb.png")
3232
public class AIO extends Script {
3333

34-
static final String VERSION = "v2.1.2";
34+
static final String VERSION = "v2.1.3";
3535

3636
private Gui gui;
3737
private Paint paint;

0 commit comments

Comments
 (0)