Solderer has a direction again
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
### 0.8.8
|
### 0.8.8
|
||||||
**Bugfixes**
|
**Bugfixes**
|
||||||
- Use ore dictionary for recipes with glass
|
- Use ore dictionary for recipes with glass
|
||||||
|
- Fixed solderer not working with automation anymore
|
||||||
|
|
||||||
### 0.8.7
|
### 0.8.7
|
||||||
**Bugfixes**
|
**Bugfixes**
|
||||||
|
|||||||
@@ -69,6 +69,6 @@ public class BlockSolderer extends BlockNode {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public EnumPlacementType getPlacementType() {
|
public EnumPlacementType getPlacementType() {
|
||||||
return null;
|
return EnumPlacementType.ANY;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -104,7 +104,8 @@ public class ClientProxy extends CommonProxy {
|
|||||||
// Blocks
|
// Blocks
|
||||||
ModelLoader.setCustomStateMapper(RefinedStorageBlocks.GRID, (new StateMap.Builder())
|
ModelLoader.setCustomStateMapper(RefinedStorageBlocks.GRID, (new StateMap.Builder())
|
||||||
.ignore(RefinedStorageBlocks.GRID.TYPE)
|
.ignore(RefinedStorageBlocks.GRID.TYPE)
|
||||||
.build());
|
.build()
|
||||||
|
);
|
||||||
|
|
||||||
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.CABLE), 0, new ModelResourceLocation("refinedstorage:cable", "inventory"));
|
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.CABLE), 0, new ModelResourceLocation("refinedstorage:cable", "inventory"));
|
||||||
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.GRID), EnumGridType.NORMAL.getId(), new ModelResourceLocation("refinedstorage:grid", "inventory"));
|
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.GRID), EnumGridType.NORMAL.getId(), new ModelResourceLocation("refinedstorage:grid", "inventory"));
|
||||||
|
|||||||
@@ -25,6 +25,26 @@
|
|||||||
},
|
},
|
||||||
"false": {
|
"false": {
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"direction": {
|
||||||
|
"north": {
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"east": {
|
||||||
|
"y": 90
|
||||||
|
},
|
||||||
|
"south": {
|
||||||
|
"y": 180
|
||||||
|
},
|
||||||
|
"west": {
|
||||||
|
"y": 270
|
||||||
|
},
|
||||||
|
"up": {
|
||||||
|
"x": 270
|
||||||
|
},
|
||||||
|
"down": {
|
||||||
|
"x": 90
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user