fix #2729
This commit is contained in:
parent
2e10938e1c
commit
73f232433d
2 changed files with 8 additions and 4 deletions
|
|
@ -28,7 +28,7 @@
|
|||
- You can now also use mars water in gregtech and create boilers @Pyritie
|
||||
- Changed the texture of out-of-season blood lilies so they're findable year-round @Pyritie
|
||||
- Added alloy smelter recipes for jar lids (#2705) @thederpysockdude123
|
||||
- Reduced the amount of ambient wolf sounds at night, and crickets/cicadas now require grass plants instead of grass blocks (#2680) @Pyritie
|
||||
- Reduced the amount of ambient awoos at night, and crickets/cicadas now require grass plants instead of grass blocks (#2680) @Pyritie
|
||||
### Bug fixes
|
||||
- Fixed not being able to craft Paracetamol or Rad-Away @Pyritie
|
||||
- Fixed the missing dried fruit to yeast starter recipe (#2673) @Mqrius
|
||||
|
|
@ -46,10 +46,12 @@
|
|||
- Fixed inconsistent saturation values from cooked long pig filet (#2714) @Pyritie
|
||||
- Fixed soaked paper in a helve hammer having a blow count of less than 1 for some anvils (#2655) @Pyritie
|
||||
- Fixed casting of rods and gears for various metals @Pyritie
|
||||
- Fixed a dupe with scraping knives (#2716) @Inceitious
|
||||
### Translation updates
|
||||
- Chinese (simplified) @jmecn
|
||||
- Russian @Petr211071 + @Nixieeunrare
|
||||
- Russian @Petr211071 + @Nixieeunrare + @Maxiffon
|
||||
- Japanese @sakura-gondra
|
||||
- Ukranian @MetEnBouldry
|
||||
|
||||
## [0.11.16] - 05-01-2026
|
||||
### Changes
|
||||
|
|
|
|||
|
|
@ -276,8 +276,8 @@ const registerGTCEuMaterialModification = (event) => {
|
|||
|
||||
GTMaterials.Wood.addFlags(GENERATE_SMALL_GEAR);
|
||||
GTMaterials.Brass.addFlags(GENERATE_SMALL_GEAR, GENERATE_RING);
|
||||
GTMaterials.BlackBronze.addFlags(GENERATE_SMALL_GEAR);
|
||||
GTMaterials.BismuthBronze.addFlags(GENERATE_SMALL_GEAR);
|
||||
GTMaterials.BlackBronze.addFlags(GENERATE_SMALL_GEAR, GENERATE_RING);
|
||||
GTMaterials.BismuthBronze.addFlags(GENERATE_SMALL_GEAR, GENERATE_RING);
|
||||
|
||||
GTMaterials.Nickel.addFlags(GENERATE_ROD, GENERATE_LONG_ROD);
|
||||
GTMaterials.Zinc.addFlags(GENERATE_LONG_ROD);
|
||||
|
|
@ -293,6 +293,8 @@ const registerGTCEuMaterialModification = (event) => {
|
|||
|
||||
GTMaterials.Cupronickel.addFlags(GENERATE_BOLT_SCREW, GENERATE_RING);
|
||||
|
||||
GTMaterials.BlackBronze.addFlags(GENERATE_ROTOR)
|
||||
GTMaterials.BismuthBronze.addFlags(GENERATE_ROTOR)
|
||||
GTMaterials.Ultimet.addFlags(GENERATE_ROTOR)
|
||||
GTMaterials.CobaltBrass.addFlags(GENERATE_ROTOR)
|
||||
GTMaterials.Magnalium.addFlags(GENERATE_ROTOR)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue