Merge pull request #3437 from refinedmods/develop

v1.11.4
This commit is contained in:
Raoul
2022-12-20 16:24:59 +01:00
committed by GitHub
3 changed files with 9 additions and 3 deletions

View File

@@ -9,6 +9,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Fixed ### Fixed
- Fixed duplication bug in the Interface.
## [v1.11.3] - 2022-12-20
### Fixed
- Fixed external storage cache being de-synced from the network cache. - Fixed external storage cache being de-synced from the network cache.
- Fixed external storage using an out of date block entity for getting handler. - Fixed external storage using an out of date block entity for getting handler.
- Fixed inventory slots being reused incorrectly in rare cases in the JEI transfer handler. - Fixed inventory slots being reused incorrectly in rare cases in the JEI transfer handler.

View File

@@ -33,7 +33,7 @@ apply plugin: 'maven-publish'
group = 'com.refinedmods' group = 'com.refinedmods'
archivesBaseName = 'refinedstorage' archivesBaseName = 'refinedstorage'
version = '1.11.3' version = '1.11.4'
if (System.getenv('GITHUB_SHA') != null) { if (System.getenv('GITHUB_SHA') != null) {
version += '+' + System.getenv('GITHUB_SHA').substring(0, 7) version += '+' + System.getenv('GITHUB_SHA').substring(0, 7)

View File

@@ -273,7 +273,7 @@ public class Network implements INetwork, IRedstoneConfigurable {
return ItemHandlerHelper.copyStackWithSize(stack, size); return ItemHandlerHelper.copyStackWithSize(stack, size);
} }
ItemStack remainder = stack; ItemStack remainder = ItemHandlerHelper.copyStackWithSize(stack, size);
int inserted = 0; int inserted = 0;
int insertedExternally = 0; int insertedExternally = 0;
@@ -380,7 +380,7 @@ public class Network implements INetwork, IRedstoneConfigurable {
return StackUtils.copy(stack, size); return StackUtils.copy(stack, size);
} }
FluidStack remainder = stack; FluidStack remainder = StackUtils.copy(stack, size);
int inserted = 0; int inserted = 0;
int insertedExternally = 0; int insertedExternally = 0;