1.12: Fixed Small Block Breaker base class to horizontal directed (issue #70).
This commit is contained in:
parent
a733e39c51
commit
714a725f0d
9 changed files with 19 additions and 16 deletions
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/",
|
||||
"1.12.2": {
|
||||
"1.0.17-b3": "[F] Fixed Small Block Breaker facings to the horizontal range (issue #70, thx JimMiningWorm).",
|
||||
"1.0.17-b2": "[A] Reverse recipes for slabs and slab slices added.\n[M] Inset Floor Edge Light slightly thinner, looks better.",
|
||||
"1.0.17-b1": "[A] Added Milking Machine.\n[M] Window placement improved.\n[M] Made Pipe Valve textures slightly darker to fit IE pipes better when shaded.",
|
||||
"1.0.16": "[R] Release based on v1.0.16-b3. Release-to-release changes: * Added Gas Concrete blocks/walls/stairs/slabs/slab slices. * Added Fluid Collection Funnel * Crafting yield for Clinker/Slag bricks increased. * Block Placer improvements (cocoa planting) and fixes. * Block breaker compat improvements and fixes. * Recipe compat auto detection fixes. * Feature opt-out and tweak config options for mod packs improved.",
|
||||
|
@ -72,6 +73,6 @@
|
|||
},
|
||||
"promos": {
|
||||
"1.12.2-recommended": "1.0.16",
|
||||
"1.12.2-latest": "1.0.17-b2"
|
||||
"1.12.2-latest": "1.0.17-b3"
|
||||
}
|
||||
}
|
|
@ -10,7 +10,7 @@ Mod sources for Minecraft version 1.12.2.
|
|||
----
|
||||
## Version history
|
||||
|
||||
~ v1.0.17-b3 [A]
|
||||
- v1.0.17-b3 [F] Fixed Small Block Breaker facings to the horizontal range (issue #70, thx JimMiningWorm).
|
||||
|
||||
- v1.0.17-b2 [A] Reverse recipes for slabs and slab slices added.
|
||||
[M] Inset Floor Edge Light slightly thinner, looks better.
|
||||
|
|
|
@ -35,7 +35,7 @@ import java.util.HashSet;
|
|||
import java.util.Random;
|
||||
|
||||
|
||||
public class BlockDecorBreaker extends BlockDecorDirected
|
||||
public class BlockDecorBreaker extends BlockDecorDirectedHorizontal
|
||||
{
|
||||
public static final PropertyBool ACTIVE = PropertyBool.create("active");
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"variants": {
|
||||
"normal": [{}],
|
||||
"inventory": [{}],
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90}, "up": {"x":-90}, "down": {"x":90} },
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90} },
|
||||
"active": { "true":{ "model": "engineersdecor:device/small_block_breaker_model_active" }, "false":{}}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue