mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-18 16:02:19 +01:00
Hotfixed Redstone Links
This commit is contained in:
parent
9a77081f3a
commit
a4513086a1
4 changed files with 6 additions and 4 deletions
|
@ -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'
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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.",
|
||||
|
|
Loading…
Reference in a new issue