diff options
| author | Alkalus <draknyte1@hotmail.com> | 2017-08-15 13:48:36 +1000 |
|---|---|---|
| committer | Alkalus <draknyte1@hotmail.com> | 2017-08-15 13:48:36 +1000 |
| commit | 8a3abd42c21677c2873771868beb09c1487bd448 (patch) | |
| tree | 24573b9a15ecde281c430e50dda1e46f9c0b2c44 /src/Java/gtPlusPlus/core/slots | |
| parent | f38c45d27bbccda65cba941887e4c6dbb303df10 (diff) | |
| download | GT5-Unofficial-8a3abd42c21677c2873771868beb09c1487bd448.tar.gz GT5-Unofficial-8a3abd42c21677c2873771868beb09c1487bd448.tar.bz2 GT5-Unofficial-8a3abd42c21677c2873771868beb09c1487bd448.zip | |
$ Fixed an issue where the Fish Catcher would duplicate one of it's slots visually.
$ Fixed Fish Catcher trying to give seaweed loot without Pam's Harvest Craft, it now gives dirt as a fallback.
$ Fixed Fish Catcher not giving out all the various Minecraft fish. (Still needs work)
Diffstat (limited to 'src/Java/gtPlusPlus/core/slots')
| -rw-r--r-- | src/Java/gtPlusPlus/core/slots/SlotNoInput.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/slots/SlotNoInput.java b/src/Java/gtPlusPlus/core/slots/SlotNoInput.java index 3177c24868..db0630c4cd 100644 --- a/src/Java/gtPlusPlus/core/slots/SlotNoInput.java +++ b/src/Java/gtPlusPlus/core/slots/SlotNoInput.java @@ -6,8 +6,8 @@ import net.minecraft.item.ItemStack; public class SlotNoInput extends Slot{ - public SlotNoInput(final IInventory inventory, final int x, final int y, final int z) { - super(inventory, x, y, z); + public SlotNoInput(final IInventory inventory, final int index, final int x, final int y) { + super(inventory, index, x, y); } @Override |
