- Fixed supports
This commit is contained in:
parent
956a32ae42
commit
b276adafbe
2 changed files with 8 additions and 7 deletions
|
|
@ -13,6 +13,7 @@
|
||||||
- Fixed speed of bulk washing
|
- Fixed speed of bulk washing
|
||||||
- Lowered SU requirements of some more Create machines
|
- Lowered SU requirements of some more Create machines
|
||||||
- Reduced how many sticks were being placed in the nether
|
- Reduced how many sticks were being placed in the nether
|
||||||
|
- Fixed new supports to work correctly
|
||||||
|
|
||||||
## [0.9.2]
|
## [0.9.2]
|
||||||
### Changes
|
### Changes
|
||||||
|
|
|
||||||
|
|
@ -266,19 +266,19 @@ const registerTFCFoodData = (event) => {
|
||||||
//#region registerTFCSupportData
|
//#region registerTFCSupportData
|
||||||
//up, down, horizontal
|
//up, down, horizontal
|
||||||
const registerTFCSupportData = (event) => {
|
const registerTFCSupportData = (event) => {
|
||||||
event.support('tfg:light_concrete_support', 4, 4, 8, 'light_concrete_support')
|
event.support('tfg:light_concrete_support_horizontal', 4, 4, 8, 'light_concrete_support')
|
||||||
event.support('tfg:dark_concrete_support', 4, 4, 8, 'dark_concrete_support')
|
event.support('tfg:dark_concrete_support_horizontal', 4, 4, 8, 'dark_concrete_support')
|
||||||
event.support('tfg:reinforced_light_concrete_support', 6, 6, 16, 'reinforced_light_concrete_support')
|
event.support('tfg:reinforced_light_concrete_support_horizontal', 6, 6, 16, 'reinforced_light_concrete_support')
|
||||||
event.support('tfg:reinforced_dark_concrete_support', 6, 6, 16, 'reinforced_dark_concrete_support')
|
event.support('tfg:reinforced_dark_concrete_support_horizontal', 6, 6, 16, 'reinforced_dark_concrete_support')
|
||||||
event.support('tfg:rebar_support', 4, 4, 8, 'rebar_support')
|
event.support('tfg:rebar_support_horizontal', 4, 4, 8, 'rebar_support')
|
||||||
event.support('tfg:steel_support', 6, 6, 16, 'steel_support')
|
event.support('tfg:steel_support_horizontal', 6, 6, 16, 'steel_support')
|
||||||
|
|
||||||
const other_stone = ['pyroxenite', 'migmatite', 'travertine']
|
const other_stone = ['pyroxenite', 'migmatite', 'travertine']
|
||||||
const stone_types = global.TFC_STONE_TYPES.concat(other_stone)
|
const stone_types = global.TFC_STONE_TYPES.concat(other_stone)
|
||||||
|
|
||||||
stone_types.forEach(stone => {
|
stone_types.forEach(stone => {
|
||||||
|
|
||||||
event.support(`tfg:${stone}_support`, 2, 2, 4, `${stone}_support`)
|
event.support(`tfg:${stone}_support_horizontal`, 2, 2, 4, `${stone}_support`)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue