#2913 fixes missing heat data for some tag prefixes
This commit is contained in:
parent
80198e0a4c
commit
d4da49043a
2 changed files with 8 additions and 2 deletions
|
|
@ -53,6 +53,7 @@
|
|||
- Fixed stair and slab versions of road blocks not having speed bonuses (#2912) @Pyritie
|
||||
- Fixed RNR roofs not having mineable tags, and blocked the stair/slab frame from Additional Placements (#2870) @Pyritie
|
||||
- Fixed piglin brutes not dropping meat or bones @Pyritie
|
||||
- Fixed not being able to put rings, wrench tips, screwdriver tips, buzzsaw blades, or wire cutter tips in a crucible (#2913) @Pyritie
|
||||
### Translation updates
|
||||
- Chinese (simplified) @jmecn
|
||||
- Russian @Petr211071 + @Nixieeunrare
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@ const registerGTCEUHeats = (event) => {
|
|||
makeItemHeatByTagPrefix(TagPrefix.plateDouble, material, tfcProperty, 5.75)
|
||||
makeItemHeatByTagPrefix(TagPrefix.springSmall, material, tfcProperty, 0.567)
|
||||
makeItemHeatByTagPrefix(TagPrefix.spring, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TagPrefix.ring, material, tfcProperty, 0.567)
|
||||
|
||||
makeItemHeatByTagPrefix(TagPrefix.ingot, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TFGTagPrefix.ingotDouble, material, tfcProperty, 2.875)
|
||||
|
|
@ -59,7 +60,11 @@ const registerGTCEUHeats = (event) => {
|
|||
makeItemHeatByTagPrefix(TagPrefix.crushed, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TagPrefix.crushedPurified, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TagPrefix.crushedRefined, material, tfcProperty, 1.429)
|
||||
|
||||
|
||||
makeItemHeatByTagPrefix(TagPrefix.toolHeadWrench, material, tfcProperty, 2.875)
|
||||
makeItemHeatByTagPrefix(TagPrefix.toolHeadBuzzSaw, material, tfcProperty, 2.875)
|
||||
makeItemHeatByTagPrefix(TagPrefix.toolHeadScrewdriver, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TagPrefix.toolHeadWireCutter, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadSword, material, tfcProperty, 2.875)
|
||||
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadShovel, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadScythe, material, tfcProperty, 1.429)
|
||||
|
|
@ -70,7 +75,7 @@ const registerGTCEUHeats = (event) => {
|
|||
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadHammer, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadAxe, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadFile, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadButcheryKnife, material, tfcProperty, 2.875)
|
||||
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadButcheryKnife, material, tfcProperty, 1.429)
|
||||
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadMiningHammer, material, tfcProperty, 2.875)
|
||||
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadSpade, material, tfcProperty, 2.875)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue