Merge pull request #2133 from TerraFirmaGreg-Team/dev

Release: 0.11.7
This commit is contained in:
Xikaro 2025-10-31 10:52:53 +05:00 committed by GitHub
commit 1edd8a362c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 55 additions and 25 deletions

View file

@ -4,6 +4,15 @@
### Changes
### Bug fixes
## [0.11.7] - 30-10-2025
### Changes
- Wild canola and flax are now more rare (#2125) @BlueBoat29
- Maple and birch syrup tapping is now more temperature tolerand and works any time of year (#2126) @theMegaTech
### Bug fixes
- Fixed an issue with the fission reactor causing chunkbans @Vazde
- Fixed an issue with the third-person-shooting mod not working correctly on servers sometimes @Xikaro
- Fixed fission components not being registered properly @Pyritie
## [0.11.6] - 29-10-2025
### Mod updates
- New GregTech patch, check the patch notes [here](https://github.com/GregTechCEu/GregTech-Modern/releases/tag/v7.2.1-1.20.1)

View file

@ -18,7 +18,7 @@
"title": "Maple",
"item": "tfc:wood/log/maple,tfc:wood/wood/maple,tfc:wood/leaves/maple,tfc:wood/sapling/maple",
"link_recipe": false,
"text": "$(bold)Climate Data$()$(br)$(thing)Minimum Temperature$(): -8.4°C$(br)$(thing)Maximum Temperature$(): 8°C$(br)$(thing)Minimum Rainfall$(): 240$(br)$(thing)Maximum Rainfall$(): 470$(br2)$(bold)Tapping Data$()$(br)$(thing)Min Temp for Production$(): -4°C$(br)$(thing)Max Temp for Production$(): 6°C$(br)$(thing)Spring Exclusive$(): Yes$(br)$(thing)Flow Rate$(): 5mb"
"text": "$(bold)Climate Data$()$(br)$(thing)Minimum Temperature$(): -8.4°C$(br)$(thing)Maximum Temperature$(): 8°C$(br)$(thing)Minimum Rainfall$(): 240$(br)$(thing)Maximum Rainfall$(): 470$(br2)$(bold)Tapping Data$()$(br)$(thing)Min Temp for Production$(): -15°C$(br)$(thing)Max Temp for Production$(): 5°C$(br)$(thing)Spring Exclusive$(): No$(br)$(thing)Flow Rate$(): 5mb"
},
{
"type": "patchouli:image",
@ -32,7 +32,7 @@
"title": "Birch",
"item": "tfc:wood/log/birch,tfc:wood/wood/birch,tfc:wood/leaves/birch,tfc:wood/sapling/birch",
"link_recipe": false,
"text": "$(bold)Climate Data$()$(br)$(thing)Minimum Temperature$(): -12.1°C$(br)$(thing)Maximum Temperature$(): 6.1°C$(br)$(thing)Minimum Rainfall$(): 125$(br)$(thing)Maximum Rainfall$(): 310$(br2)$(bold)Tapping Data$()$(br)$(thing)Min Temp for Production$(): -4°C$(br)$(thing)Max Temp for Production$(): 6°C$(br)$(thing)Spring Exclusive$(): Yes$(br)$(thing)Flow Rate$(): 5mb"
"text": "$(bold)Climate Data$()$(br)$(thing)Minimum Temperature$(): -12.1°C$(br)$(thing)Maximum Temperature$(): 6.1°C$(br)$(thing)Minimum Rainfall$(): 125$(br)$(thing)Maximum Rainfall$(): 310$(br2)$(bold)Tapping Data$()$(br)$(thing)Min Temp for Production$(): -15°C$(br)$(thing)Max Temp for Production$(): 5°C$(br)$(thing)Spring Exclusive$(): No$(br)$(thing)Flow Rate$(): 5mb"
},
{
"type": "patchouli:image",

View file

@ -3769,7 +3769,7 @@
}
}
],
"text": "$(thing)Wild Flax$() grows between -5 and 27C, and 175 to 475mm of rainfall."
"text": "$(thing)Wild Flax$() grows between -5 and 23C, and 175 to 475mm of rainfall."
}
],
"read_by_default": true,

View file

@ -33,8 +33,8 @@
}
]
},
"tries": 20,
"xz_spread": 16,
"tries": 5,
"xz_spread": 8,
"y_spread": 1
}
}

View file

@ -33,7 +33,7 @@
}
]
},
"tries": 16,
"tries": 12,
"xz_spread": 10,
"y_spread": 1
}

View file

@ -34,7 +34,7 @@
]
},
"tries": 16,
"xz_spread": 10,
"xz_spread": 20,
"y_spread": 1
}
}

View file

@ -3,7 +3,7 @@
"placement": [
{
"type": "minecraft:rarity_filter",
"chance": 55
"chance": 150
},
{
"type": "minecraft:in_square"
@ -11,7 +11,7 @@
{
"type": "tfc:climate",
"min_temperature": -5,
"max_temperature": 27,
"max_temperature": 23,
"min_rainfall": 175,
"max_rainfall": 475,
"max_forest": "sparse"

View file

@ -3,7 +3,7 @@
"placement": [
{
"type": "minecraft:rarity_filter",
"chance": 80
"chance": 100
},
{
"type": "minecraft:in_square"

View file

@ -3,7 +3,7 @@
"placement": [
{
"type": "minecraft:rarity_filter",
"chance": 80
"chance": 100
},
{
"type": "minecraft:in_square"

View file

@ -188,6 +188,24 @@ const registerAFCRecipes = (event) => {
.requiresNaturalLog(true)
.id("tfg:tree_tapping/ancient_douglas_fir_resin")
//Syrups
event.remove({ id: "afc:tree_tapping/maple_syrup" })
event.remove({ id: "afc:tree_tapping/birch_syrup" })
event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/maple'))
.resultFluid(Fluid.of('afc:maple_sap', 5))
.minTemp(-15)
.maxTemp(5)
.requiresNaturalLog(true)
.id("tfg:tree_tapping/maple_log")
event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/birch'))
.resultFluid(Fluid.of('afc:birch_sap', 5))
.minTemp(-15)
.maxTemp(5)
.requiresNaturalLog(true)
.id("tfg:tree_tapping/birch_log")
// Mars stuff
event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/log/crimson'))
@ -456,4 +474,4 @@ const registerAFCRecipes = (event) => {
processingTime: 50
}).id(`tfg:vi/lathe/stripping_${x.wood}_wood`)
})
}
}

View file

@ -4,7 +4,7 @@
*
* @param {TagEvent.Item} evt
*/
const registerImmersiveAircraftItemTags = (evt) => {
evt.add('c:hidden_from_recipe_viewers', 'immersive_aircraft:propeller');
evt.add('c:hidden_from_recipe_viewers', 'immersive_aircraft:boiler')
const registerImmersiveAircraftItemTags = (event) => {
event.add('c:hidden_from_recipe_viewers', 'immersive_aircraft:propeller')
event.add('c:hidden_from_recipe_viewers', 'immersive_aircraft:boiler')
}

View file

@ -36,6 +36,7 @@ ServerEvents.tags('item', event => {
registerGrapplemodItemTags(event)
registerGreateItemTags(event)
registerGTCEUItemTags(event)
registerImmersiveAircraftItemTags(event)
registerMegaCellsItemTags(event)
registerMinecraftItemTags(event)
registerModernMarkingsItemTags(event)
@ -226,6 +227,7 @@ ServerEvents.recipes(event => {
registerCreateFactoryLogisticsRecipes(event)
registerCreateHorsePowerBlockRecipes(event)
registerCreateHypertubeRecipes(event)
registerDeaFissionRecipes(event)
registerDiggerHelmetRecipes(event)
registerDomumOrnamentumRecipes(event)
registerEndermanOverhaulRecipes(event)

View file

@ -77,9 +77,6 @@ function registerVintageImprovementsRecipes(event) {
F: '#forge:springs/wrought_iron'
}).addMaterialInfo().id('tfg:vi/shaped/curving_press')
event.shapeless('vintageimprovements:curving_press', ['create:mechanical_press', '#forge:tools/files'])
.id('tfg:shapeless/mech_press_converting')
event.shaped('vintageimprovements:helve_hammer', [
'F A',
'BBE',

View file

@ -4341,7 +4341,7 @@
"files": [
{
"type": "curseforge",
"file_name": "deafission-1.20.1-0.13.0.jar",
"file_name": "deafission-1.20.1-0.13.2.jar",
"mc_versions": [
"1.20.1"
],
@ -4349,19 +4349,19 @@
"forge"
],
"release_type": "beta",
"url": "https://edge.forgecdn.net/files/7141/816/deafission-1.20.1-0.13.0.jar",
"id": "7141816",
"url": "https://edge.forgecdn.net/files/7168/614/deafission-1.20.1-0.13.2.jar",
"id": "7168614",
"parent_id": "1354541",
"hashes": {
"sha1": "2da535dd7c210c3cd259b4e58e6af09676f2c5fb",
"md5": "cca2f339d5fefce5716cbb5f9b1d68bb"
"sha1": "5ff6d80290d59ab782b9aab2e00cbb90fc5ab641",
"md5": "16e4d34e2eac7e920aa281c135c2175a"
},
"required_dependencies": [
"890405",
"238086"
],
"size": 287675,
"date_published": "2025-10-23T17:48:17.073Z"
"size": 287745,
"date_published": "2025-10-30T23:06:07.040Z"
}
]
},
@ -13819,6 +13819,7 @@
{
"pakku_id": "UUgCxePdwRd5MyWw",
"type": "MOD",
"side": "CLIENT",
"slug": {
"curseforge": "third-person-shooting"
},

View file

@ -244,6 +244,9 @@
"pick-up-notifier": {
"side": "CLIENT"
},
"third-person-shooting": {
"side": "CLIENT"
},
"inventory-tweaks-refoxed": {
"side": "BOTH"
},