From a4513086a1f13896b21129891747b5ebd045fe02 Mon Sep 17 00:00:00 2001 From: simibubi <31564874+simibubi@users.noreply.github.com> Date: Sun, 29 Mar 2020 04:44:13 +0200 Subject: [PATCH] Hotfixed Redstone Links --- build.gradle | 2 +- .../create/modules/logistics/RedstoneLinkNetworkHandler.java | 2 +- src/main/resources/META-INF/mods.toml | 2 +- src/main/resources/assets/create/lang/en_us.json | 4 +++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 873f2bb7a..f30dc6846 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle' apply plugin: 'eclipse' apply plugin: 'maven-publish' -version = 'mc1.14.4_v0.2.2' +version = 'mc1.14.4_v0.2.2a' group = 'com.simibubi.create' archivesBaseName = 'create' diff --git a/src/main/java/com/simibubi/create/modules/logistics/RedstoneLinkNetworkHandler.java b/src/main/java/com/simibubi/create/modules/logistics/RedstoneLinkNetworkHandler.java index f8c96a725..dd2c5bad7 100644 --- a/src/main/java/com/simibubi/create/modules/logistics/RedstoneLinkNetworkHandler.java +++ b/src/main/java/com/simibubi/create/modules/logistics/RedstoneLinkNetworkHandler.java @@ -95,7 +95,7 @@ public class RedstoneLinkNetworkHandler { continue; } World world = actor.getWorld(); - if (world.isBlockPresent(other.tileEntity.getPos())) { + if (!world.isBlockPresent(other.tileEntity.getPos())) { iterator.remove(); continue; } diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 3471d8dbe..d3f742686 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -4,7 +4,7 @@ loaderVersion="[28,)" [[mods]] modId="create" -version="mc1.14-0.2.2" +version="mc1.14-0.2.2a" displayName="Create" #updateJSONURL="" authors="simibubi" diff --git a/src/main/resources/assets/create/lang/en_us.json b/src/main/resources/assets/create/lang/en_us.json index 29539f949..d48040e46 100644 --- a/src/main/resources/assets/create/lang/en_us.json +++ b/src/main/resources/assets/create/lang/en_us.json @@ -859,9 +859,11 @@ "block.create.turntable.tooltip.summary": "Turns _Rotational_ _Force_ into refined Motion Sickness.", "block.create.millstone.tooltip": "MILLSTONE", - "block.create.millstone.tooltip.summary": "A kinetic component suitable for _grinding_ inserted _materials_. Can be powered by an adjacent cogwheel or by connecting to the shaft at the bottom.", + "block.create.millstone.tooltip.summary": "A kinetic component suitable for _grinding_ inserted _materials_. Can be powered by an adjacent cogwheel or by connecting to the shaft at the bottom. Results have to be extracted from the component.", "block.create.millstone.tooltip.condition1": "When Rotated", "block.create.millstone.tooltip.behaviour1": "Starts applying _milling_ _recipes_ to any items inserted from the side or the top of the block.", + "block.create.millstone.tooltip.condition2": "When R-Clicked", + "block.create.millstone.tooltip.behaviour2": "Collects the outputs manually.", "block.create.crushing_wheel.tooltip": "CRUSHING WHEEL", "block.create.crushing_wheel.tooltip.summary": "Large rotatable wheels that _break_ _down_ anything.",