diff --git a/gradle.properties b/gradle.properties index 94fb943af..d883906be 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ aebuild=7 aegroup=appeng aebasename=appliedenergistics2 extended=extended_life -extendedversion=v50f +extendedversion=v50g ######################################################### # Versions # ######################################################### diff --git a/src/main/java/appeng/crafting/CraftingJob.java b/src/main/java/appeng/crafting/CraftingJob.java index 4c2b0d854..1fc555aef 100644 --- a/src/main/java/appeng/crafting/CraftingJob.java +++ b/src/main/java/appeng/crafting/CraftingJob.java @@ -167,7 +167,7 @@ public class CraftingJob implements Runnable, ICraftingJob } craftingTreeWatch.stop(); - this.logCraftingJob( "real", craftingTreeWatch ); + this.logCraftingJob( "real, success", craftingTreeWatch ); } catch( final CraftBranchFailure e ) { @@ -199,7 +199,7 @@ public class CraftingJob implements Runnable, ICraftingJob else { craftingTreeWatch.stop(); - this.logCraftingJob( "real", craftingTreeWatch ); + this.logCraftingJob( "real, failed", craftingTreeWatch ); } } catch( final CraftBranchFailure e1 ) @@ -266,12 +266,13 @@ public class CraftingJob implements Runnable, ICraftingJob AELog.craftingDebug( "crafting job now active" ); } } - - if( Thread.interrupted() ) - { - throw new InterruptedException(); - } } + + if( Thread.interrupted() ) + { + throw new InterruptedException(); + } + this.incTime++; } diff --git a/src/main/java/appeng/crafting/MECraftingInventory.java b/src/main/java/appeng/crafting/MECraftingInventory.java index 842e668f6..88bd0f9ae 100644 --- a/src/main/java/appeng/crafting/MECraftingInventory.java +++ b/src/main/java/appeng/crafting/MECraftingInventory.java @@ -139,14 +139,7 @@ public class MECraftingInventory implements IMEInventory this.localCache = new ItemListIgnoreCrafting<>( AEApi.instance().storage().getStorageChannel( IItemStorageChannel.class ).createList() ); for( final IAEItemStack is : target.getStorageList() ) { - if( src.player().isPresent() ) - { - this.localCache.add( target.extractItems( is, Actionable.SIMULATE, src ) ); - } - else - { - this.localCache.add( is ); - } + this.localCache.add( target.extractItems( is, Actionable.SIMULATE, src ) ); } this.par = null;