Skip to content

Commit

Permalink
Rename varbits for paste
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueSoapTurtle committed Oct 29, 2024
1 parent 3795ff2 commit 018bf3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ private void addPotionOrderComponent(PotionOrder order) {

private void displayResinAndPaste() {
// Create components for each resin and paste
LayoutableRenderableEntity moxComponent = createResinAndPasteComponent(PotionComponent.MOX, MasteringMixologyPlugin.MOX_PASTE_VARBIT, MasteringMixologyPlugin.VARP_MOX_RESIN);
LayoutableRenderableEntity agaComponent = createResinAndPasteComponent(PotionComponent.AGA, MasteringMixologyPlugin.AGA_PASTE_VARBIT, MasteringMixologyPlugin.VARP_AGA_RESIN);
LayoutableRenderableEntity lyeComponent = createResinAndPasteComponent(PotionComponent.LYE, MasteringMixologyPlugin.LYE_PASTE_VARBIT, MasteringMixologyPlugin.VARP_LYE_RESIN);
LayoutableRenderableEntity moxComponent = createResinAndPasteComponent(PotionComponent.MOX, MasteringMixologyPlugin.VARBIT_MOX_PASTE, MasteringMixologyPlugin.VARP_MOX_RESIN);
LayoutableRenderableEntity agaComponent = createResinAndPasteComponent(PotionComponent.AGA, MasteringMixologyPlugin.VARBIT_AGA_PASTE, MasteringMixologyPlugin.VARP_AGA_RESIN);
LayoutableRenderableEntity lyeComponent = createResinAndPasteComponent(PotionComponent.LYE, MasteringMixologyPlugin.VARBIT_LYE_PASTE, MasteringMixologyPlugin.VARP_LYE_RESIN);

// Combine them horizontally
SplitComponent resinSplit = SplitComponent.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ public class MasteringMixologyPlugin extends Plugin {
private static final int VARBIT_POTION_ORDER_3 = 11319;
private static final int VARBIT_POTION_MODIFIER_3 = 11320;

public static final int MOX_PASTE_VARBIT = 11431;
public static final int AGA_PASTE_VARBIT = 11432;
public static final int LYE_PASTE_VARBIT = 11433;
public static final int VARBIT_MOX_PASTE = 11431;
public static final int VARBIT_AGA_PASTE = 11432;
public static final int VARBIT_LYE_PASTE = 11433;

static final int VARP_LYE_RESIN = 4414;
static final int VARP_AGA_RESIN = 4415;
Expand Down

0 comments on commit 018bf3c

Please sign in to comment.