update to forge 47.4.13, fix aged sake, fix cleanroom doors, fix butyraldehyde
This commit is contained in:
parent
d652769ad8
commit
dd1463acdf
7 changed files with 50 additions and 4 deletions
|
|
@ -1,9 +1,13 @@
|
|||
# Changelog
|
||||
|
||||
## Unreleased
|
||||
### Changes
|
||||
### Breaking Changes
|
||||
- Butyraldehyde in a chemical reactor now uses circuit 5 instead of 1 to avoid a conflict with Methanol @Pyritie
|
||||
### Other Changes
|
||||
- Added recipes for create's shadow and radiant casings (#2256) @Ujhik
|
||||
### Bug fixes
|
||||
- Fixed missing cleanroom tags for the ad astra 3x3 doors, so now you can *actually* use them in a cleanroom @Pyritie
|
||||
- Fixed aged sake, vodka, and whiskey losing their buff effects @Pyritie
|
||||
|
||||
## [0.11.9] - 7-12-2025
|
||||
### Breaking Changes
|
||||
|
|
|
|||
12
kubejs/data/tfc/tfc/drinkables/aged_sake.json
Normal file
12
kubejs/data/tfc/tfc/drinkables/aged_sake.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"ingredient": "tfcagedalcohol:aged_sake",
|
||||
"thirst": 15,
|
||||
"intoxication": 2000,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:resistance",
|
||||
"duration": 6400,
|
||||
"amplifier": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
12
kubejs/data/tfc/tfc/drinkables/aged_vodka.json
Normal file
12
kubejs/data/tfc/tfc/drinkables/aged_vodka.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"ingredient": "tfcagedalcohol:aged_vodka",
|
||||
"thirst": 15,
|
||||
"intoxication": 2000,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:resistance",
|
||||
"duration": 3200,
|
||||
"amplifier": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
12
kubejs/data/tfc/tfc/drinkables/aged_whiskey.json
Normal file
12
kubejs/data/tfc/tfc/drinkables/aged_whiskey.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"ingredient": "tfcagedalcohol:aged_whiskey",
|
||||
"thirst": 15,
|
||||
"intoxication": 2000,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:haste",
|
||||
"duration": 3200,
|
||||
"amplifier": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -76,6 +76,12 @@ function registerGTCEUBlockTags(event) {
|
|||
event.add("gtceu:cleanroom_doors", "createdeco:zinc_door");
|
||||
event.add("gtceu:cleanroom_doors", "createdeco:locked_zinc_door");
|
||||
event.add("gtceu:cleanroom_doors", "ad_astra:steel_door");
|
||||
event.add("gtceu:cleanroom_doors", "ad_astra:iron_sliding_door");
|
||||
event.add("gtceu:cleanroom_doors", "ad_astra:steel_sliding_door");
|
||||
event.add("gtceu:cleanroom_doors", "ad_astra:reinforced_door");
|
||||
event.add("gtceu:cleanroom_doors", "ad_astra:desh_sliding_door");
|
||||
event.add("gtceu:cleanroom_doors", "ad_astra:ostrum_sliding_door");
|
||||
event.add("gtceu:cleanroom_doors", "ad_astra:calorite_sliding_door");
|
||||
}
|
||||
|
||||
/** @param {TagEvent.Fluid} event */
|
||||
|
|
|
|||
|
|
@ -388,8 +388,8 @@ global.ADD_CIRCUIT = /** @type {const} */ ([
|
|||
{ recipeId: "gtceu:chemical_reactor/acetic_acid_from_methanol", circuitNumber: 1 },
|
||||
{ recipeId: "gtceu:large_chemical_reactor/acetic_acid_from_methanol", circuitNumber: 1 },
|
||||
|
||||
{ recipeId: "gtceu:chemical_reactor/butraldehyde", circuitNumber: 1 },
|
||||
{ recipeId: "gtceu:large_chemical_reactor/butraldehyde", circuitNumber: 1 }
|
||||
{ recipeId: "gtceu:chemical_reactor/butraldehyde", circuitNumber: 5 },
|
||||
{ recipeId: "gtceu:large_chemical_reactor/butraldehyde", circuitNumber: 5 }
|
||||
]);
|
||||
//#endregion
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"1.20.1"
|
||||
],
|
||||
"loaders": {
|
||||
"forge": "47.4.6"
|
||||
"forge": "47.4.13"
|
||||
},
|
||||
"projects": [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue