Skip to content

Commit

Permalink
fix: rune mino pouch being coloured in when you don't have the approp…
Browse files Browse the repository at this point in the history
…riate items
  • Loading branch information
Ilwyd committed Sep 11, 2024
1 parent 525162c commit 89628f5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions client/src/main/java/ObjType.java
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,17 @@ else if (itemId == 12466 && key == 599) {
}

// Setting 541 (shard crafting requirement) to be 100 for the Rune Minotaur Pouch
// Without setting the other the crafting interface won't grey out the icon
// when you don't have the appropriate items to craft with.
if (itemId == 12083) {
this.params.put(538, new IntNode(12155));
this.params.put(539, new IntNode(1));
this.params.put(540, new IntNode(12183));
this.params.put(541, new IntNode(100));
this.params.put(542, new IntNode(12163));
this.params.put(543, new IntNode(1));
this.params.put(697, new IntNode(2363));
this.params.put(698, new IntNode(1));
}

this.params.put((long) key, node);
Expand Down

0 comments on commit 89628f5

Please sign in to comment.