1.12: Factory Hopper. Recipe json file tree structured. Conditional recipe constant fixed. Waste Incinerator shifting improved.

This commit is contained in:
stfwi 2019-10-19 14:09:42 +02:00
parent 97ae2c3af1
commit 0d8c86bf8d
127 changed files with 37 additions and 36 deletions

View file

@ -1,6 +1,7 @@
{
"homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/",
"1.12.2": {
"1.0.14-b1": "[A] Factory Hopper added (configurable hopper and item collector).\n[M] Small Waste Incinerator Fifo shifting improved.\n[M] Lang file zh_cn updated (scikirbypoke, PR#53).\n[F] Fixed conditional recipe constant for redstone pipe valve (thx @albert_ac).",
"1.0.13": "[R] Release based on v1.0.13-b2. Release-to-release changes: * Small Tree Cutter device added. * Small Solar Panel added. * Steel Mesh Fence added. * Broad Window Sill added.",
"1.0.13-b2": "[A] Added Steel Mesh Fence.\n[A] Added Broad Window Sill.\n[A] Small Tree Cutter can chop Dynamic Trees, chops at tree trunk radius 7 or higher.",
"1.0.13-b1": "[A] Added Small Solar Panel.\n[A] Added Small Tree Cutter.",
@ -61,6 +62,6 @@
},
"promos": {
"1.12.2-recommended": "1.0.13",
"1.12.2-latest": "1.0.13"
"1.12.2-latest": "1.0.14-b1"
}
}

View file

@ -10,9 +10,10 @@ Mod sources for Minecraft version 1.12.2.
----
## Version history
~ v1.0.14-b1 [A] Factory Hopper added (configurable hopper and item collector).
- v1.0.14-b1 [A] Factory Hopper added (configurable hopper and item collector).
[M] Small Waste Incinerator Fifo shifting improved.
[M] Lang file zh_cn updated (scikirbypoke, PR#53).
[F] Fixed conditional recipe constant for redstone pipe valve (thx @albert_ac).
-------------------------------------------------------------------
- v1.0.13 [R] Release based on v1.0.13-b2. Release-to-release changes:

View file

@ -473,6 +473,7 @@ public class ModContent
TREATED_WOOD_CRAFTING_TABLE, TREATED_WOOD_CRAFTING_TABLE_TEI,
SMALL_LAB_FURNACE, SMALL_LAB_FURNACE_TEI,
SMALL_ELECTRICAL_FURNACE, SMALL_ELECTRICAL_FURNACE_TEI,
FACTORY_HOPPER,FACTORY_HOPPER_TEI,
FACTORY_DROPPER, FACTORY_DROPPER_TEI,
SMALL_WASTE_INCINERATOR, WASTE_INCINERATOR_TEI,
STRAIGHT_CHECK_VALVE, STRAIGHT_REDSTONE_VALVE, STRAIGHT_REDSTONE_ANALOG_VALVE, STRAIGHT_PIPE_VALVE_TEI,
@ -532,7 +533,6 @@ public class ModContent
SIGN_MINDSTEP,
PANZERGLASS_SLAB, // @todo: check if another class is needed due to is_side_visible
TREATED_WOOD_FLOOR, // @todo: check if textures need improvement
FACTORY_HOPPER,FACTORY_HOPPER_TEI,
TEST_BLOCK,TEST_BLOCK_TEI
};

View file

@ -798,7 +798,7 @@ public class BlockDecorHopper extends BlockDecorDirected
collection_volume = (new AxisAlignedBB(pos.up())).grow(0.1+collection_range_, 0.6, 0.1+collection_range_);
} else {
rpos = pos.add(0.5, -1.5,0.5);
collection_volume = (new AxisAlignedBB(pos.down())).grow(0.1+collection_range_, 0.7, 0.1+collection_range_);
collection_volume = (new AxisAlignedBB(pos.down(2))).grow(0.1+collection_range_, 1, 0.1+collection_range_);
}
final List<EntityItem> items = world.getEntitiesWithinAABB(EntityItem.class, collection_volume);
if(items.size() <= 0) return false;

View file

@ -3,15 +3,15 @@
{
"type": "engineersdecor:grc",
"result": "engineersdecor:straight_pipe_valve_redstone",
"required": ["engineersdecor:straight_pipe_valve"]
"required": ["engineersdecor:straight_pipe_valve", "immersiveengineering:connector"]
}
],
"type": "minecraft:crafting_shapeless",
"ingredients": [
{ "item": "engineersdecor:straight_pipe_valve" },
{ "item": "engineersdecor:straight_pipe_valve", "data": 0 },
{ "item": "#anyDirectedRedstoneConnector" }
],
"result": {
"item": "engineersdecor:straight_pipe_valve_redstone"
"item": "engineersdecor:straight_pipe_valve_redstone", "data": 0
}
}

Some files were not shown because too many files have changed in this diff Show more