@@ -9,6 +9,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
### 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 using an out of date block entity for getting handler.
|
||||
- Fixed inventory slots being reused incorrectly in rare cases in the JEI transfer handler.
|
||||
|
@@ -33,7 +33,7 @@ apply plugin: 'maven-publish'
|
||||
|
||||
group = 'com.refinedmods'
|
||||
archivesBaseName = 'refinedstorage'
|
||||
version = '1.11.3'
|
||||
version = '1.11.4'
|
||||
|
||||
if (System.getenv('GITHUB_SHA') != null) {
|
||||
version += '+' + System.getenv('GITHUB_SHA').substring(0, 7)
|
||||
|
@@ -273,7 +273,7 @@ public class Network implements INetwork, IRedstoneConfigurable {
|
||||
return ItemHandlerHelper.copyStackWithSize(stack, size);
|
||||
}
|
||||
|
||||
ItemStack remainder = stack;
|
||||
ItemStack remainder = ItemHandlerHelper.copyStackWithSize(stack, size);
|
||||
|
||||
int inserted = 0;
|
||||
int insertedExternally = 0;
|
||||
@@ -380,7 +380,7 @@ public class Network implements INetwork, IRedstoneConfigurable {
|
||||
return StackUtils.copy(stack, size);
|
||||
}
|
||||
|
||||
FluidStack remainder = stack;
|
||||
FluidStack remainder = StackUtils.copy(stack, size);
|
||||
|
||||
int inserted = 0;
|
||||
int insertedExternally = 0;
|
||||
|
Reference in New Issue
Block a user