Куча изменений, кастомный мод и другое

This commit is contained in:
SpeeeDCraft 2023-11-06 10:09:31 +07:00
parent 619766da5e
commit 3f35ad0a35
145 changed files with 6660 additions and 2553 deletions

View file

@ -3,17 +3,17 @@
const hideTFCStuff = (event) => {
// Hide unused TFC ores
global.allTFCStoneTypeNames.forEach(stoneTypeName => {
global.tfcSimpleMaterials.forEach(material => {
tfcSimpleMaterials.forEach(material => {
event.hide(`tfc:ore/${material}/${stoneTypeName}`)
})
global.tfcOreTypes.forEach(oreTypeName => {
global.tfcOreMaterials.forEach(oreMaterialName => {
tfcOreTypes.forEach(oreTypeName => {
tfcOreMaterials.forEach(oreMaterialName => {
event.hide(`tfc:ore/${oreTypeName}_${oreMaterialName}/${stoneTypeName}`)
})
})
global.tfcDepositeMaterials.forEach(depositeMaterialName => {
tfcDepositeMaterials.forEach(depositeMaterialName => {
event.hide(`tfc:deposit/${depositeMaterialName}/${stoneTypeName}`)
})
})