Skip to content

Commit 2bcfd1d

Browse files
committed
Fix access
1 parent 31247d3 commit 2bcfd1d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • src/main/java/com/blamejared/compat/betterwithmods

src/main/java/com/blamejared/compat/betterwithmods/Anvil.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ public static void removeAll() {
6363

6464
public static class AddShaped extends BaseAction {
6565

66-
private final IItemStack output;
67-
private final IIngredient[][] ingredients;
66+
protected final IItemStack output;
67+
protected final IIngredient[][] ingredients;
6868

6969
public AddShaped(IItemStack output, IIngredient[][] ingredients) {
7070
super("Add Anvil Shaped Recipe");
@@ -173,8 +173,8 @@ public static Object[] toShapedAnvilObjectsFixed(IIngredient[][] ingredients) {
173173

174174
public static class RemoveShaped extends BaseAction {
175175

176-
private final IItemStack output;
177-
private final IIngredient[][] ingredients;
176+
protected final IItemStack output;
177+
protected final IIngredient[][] ingredients;
178178

179179
protected RemoveShaped(IItemStack output, IIngredient[][] ingredients) {
180180
super("Remove Shaped Anvil");

0 commit comments

Comments
 (0)