diff --git a/crafting/MECraftingInventory.java b/crafting/MECraftingInventory.java index 365fdc7a4..0b750a86f 100644 --- a/crafting/MECraftingInventory.java +++ b/crafting/MECraftingInventory.java @@ -39,12 +39,12 @@ public class MECraftingInventory implements IMEInventory par = null; } - public MECraftingInventory(MECraftingInventory parrent) + public MECraftingInventory(MECraftingInventory parent) { - this.target = parrent; - this.logExtracted = parrent.logExtracted; - this.logInjections = parrent.logInjections; - this.logMissing = parrent.logMissing; + this.target = parent; + this.logExtracted = parent.logExtracted; + this.logInjections = parent.logInjections; + this.logMissing = parent.logMissing; if ( logMissing ) missingCache = AEApi.instance().storage().createItemList(); @@ -63,7 +63,7 @@ public class MECraftingInventory implements IMEInventory localCache = target.getAvailableItems( AEApi.instance().storage().createItemList() ); - par = parrent; + par = parent; } public MECraftingInventory(IMEMonitor target, BaseActionSource src, boolean logExtracted, boolean logInjections, boolean logMissing)