Skip to content

Commit

Permalink
Restore MTEHatchEnergy inventory size + description constructor (#4000)
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss authored Feb 27, 2025
1 parent 9114b78 commit 27f57bf
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ public MTEHatchEnergy(int aID, String aName, String aNameRegional, int aTier) {
new String[] { "Energy Injector for Multiblocks", "Accepts up to 2 Amps" });
}

@SuppressWarnings("unused") // needed in an addon
public MTEHatchEnergy(int aID, String aName, String aNameRegional, int aTier, int aInventorySize,
String[] aDescriptionArray) {
super(aID, aName, aNameRegional, aTier, aInventorySize, aDescriptionArray);
}

public MTEHatchEnergy(String aName, int aTier, String[] aDescription, ITexture[][][] aTextures) {
super(aName, aTier, 0, aDescription, aTextures);
}
Expand Down

0 comments on commit 27f57bf

Please sign in to comment.