Skip to content

Commit

Permalink
RS 1.9.2b - Patch release for RS for 1.16.1 - Fixes constructor dupin…
Browse files Browse the repository at this point in the history
…g (implemented for 1.16.2 in 67b0fa2). Fixes #2671
  • Loading branch information
raoulvdberge committed Sep 11, 2020
1 parent 812016f commit 6d8a55c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Refined Storage Changelog

### 1.9.2b
Fixed duplication bug with the Constructor (Darkere, raoulvdberge)

### 1.9.2
- Fixed crash with Forge version 67 (Darkere)
- Fixed cases where Refined Storage unwillingly acts like a chunkloader (raoulvdberge)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '1.9.2'
version = '1.9.2b'
def env = System.getenv()
if (env.BUILD_NUMBER) {
version = version + "+" + "${env.BUILD_NUMBER}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private void extractAndPlaceBlock(ItemStack stack) {
);

ActionResultType result = ForgeHooks.onPlaceItemIntoWorld(ctx);
if (result == ActionResultType.SUCCESS) {
if (result.isSuccessOrConsume()) {
network.extractItem(stack, 1, Action.PERFORM);
}
} else if (upgrades.hasUpgrade(UpgradeItem.Type.CRAFTING)) {
Expand Down

0 comments on commit 6d8a55c

Please sign in to comment.