From 34d0cf537383e593f38fcdba9cff6db843d5c172 Mon Sep 17 00:00:00 2001 From: thatsIch Date: Sun, 21 Sep 2014 01:38:58 +0200 Subject: [PATCH] Typo QE_SINGULARTIY --- container/implementations/ContainerQNB.java | 2 +- container/slot/SlotRestrictedInput.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/container/implementations/ContainerQNB.java b/container/implementations/ContainerQNB.java index e76f56b5e..51640a5be 100644 --- a/container/implementations/ContainerQNB.java +++ b/container/implementations/ContainerQNB.java @@ -15,7 +15,7 @@ public class ContainerQNB extends AEBaseContainer super( ip, te, null ); myte = te; - addSlotToContainer( (new SlotRestrictedInput( PlaceableItemType.QE_SINGULARTIY, te, 0, 80, 37, invPlayer )).setStackLimit( 1 ) ); + addSlotToContainer( (new SlotRestrictedInput( PlaceableItemType.QE_SINGULARITY, te, 0, 80, 37, invPlayer )).setStackLimit( 1 ) ); bindPlayerInventory( ip, 0, 166 - /* height of playerinventory */82 ); } diff --git a/container/slot/SlotRestrictedInput.java b/container/slot/SlotRestrictedInput.java index 891cfa7fa..22f470824 100644 --- a/container/slot/SlotRestrictedInput.java +++ b/container/slot/SlotRestrictedInput.java @@ -34,7 +34,7 @@ public class SlotRestrictedInput extends AppEngSlot ENCODED_CRAFTING_PATTERN(7 * 16 + 15), ENCODED_PATTERN(7 * 16 + 15), PATTERN(8 * 16 + 15), BLANK_PATTERN(8 * 16 + 15), POWERED_TOOL(9 * 16 + 15), - RANGE_BOOSTER(6 * 16 + 15), QE_SINGULARTIY(10 * 16 + 15), SPATIAL_STORAGE_CELLS(11 * 16 + 15), + RANGE_BOOSTER(6 * 16 + 15), QE_SINGULARITY(10 * 16 + 15), SPATIAL_STORAGE_CELLS(11 * 16 + 15), FUEL(12 * 16 + 15), UPGRADES(13 * 16 + 15), WORKBENCH_CELL(15), BIOMETRIC_CARD(14 * 16 + 15), VIEWCELL(4 * 16 + 14), @@ -187,7 +187,7 @@ public class SlotRestrictedInput extends AppEngSlot return TileEntityFurnace.getItemBurnTime( i ) > 0; case POWERED_TOOL: return Platform.isChargeable( i ); - case QE_SINGULARTIY: + case QE_SINGULARITY: return api.materials().materialQESingularity.sameAsStack( i ); case RANGE_BOOSTER: return api.materials().materialWirelessBooster.sameAsStack( i );