changelog, fix invar crucible alloying, add tooltip to ice slush
This commit is contained in:
parent
5df4fcfcc6
commit
9fb45e2e0c
3 changed files with 16 additions and 6 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -7,6 +7,7 @@
|
|||
### Changes
|
||||
- Added tree index field guide entries for Earth and Mars (#2638) @Jeuvke
|
||||
- Added drinkable effects field guide entry (#2676) @FlightingFalcon
|
||||
- Ice slush is now drinkable, for a cooling effect (#2708) @Inceitious
|
||||
- The crucible now holds 4608mB (32 ingots) instead of 4032mB (28 ingots) (#2634) @Pyritie
|
||||
- Large gears can now be crafted in an anvil/mechanical press @Pyritie
|
||||
- Added recipe to make tubes from volcanic glass batches (#2667) @Redeix
|
||||
|
|
@ -20,12 +21,14 @@
|
|||
- The sandworm no longer spawns in the Superflat preset that's a big vanilla desert biome
|
||||
- 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
|
||||
- Fixed the TFC blast furnace on mars but for real this time @Pyritie
|
||||
### Bug fixes
|
||||
- Added alloy smelter recipes for jar lids (#2705) @thederpysockdude123
|
||||
### Performance improvements
|
||||
- Fixed the huge amount of lag from looking at lots of interconnected trees @Mqrius
|
||||
- Fixed tree chopping also stripping nearby trees of all their leaves (note that this will only also apply to newly generated mars trees, old trees will have the old behaviour) @Mqrius
|
||||
- Fixed tree chopping not working on trees that had no leaves @Mqrius
|
||||
- Fixed tree chopping working on player-placed logs (yes, this means you can't place logs to chop down many trees at once any more) @Mqrius
|
||||
- Fixed a huge amount of lag from TFC Ambiental @Mqrius
|
||||
### Bug fixes
|
||||
- Fixed not being able to craft Paracetamol or Rad-Away @Pyritie
|
||||
- Fixed the missing dried fruit to yeast starter recipe (#2673) @Mqrius
|
||||
- Water wheels now spin the correct direction in rivers (#2450) @zehmaria
|
||||
|
|
@ -35,6 +38,10 @@
|
|||
- Fixed some inconsistent recipes with coal in coke ovens, and removed a duplicate recipe (#2688) @jurjen909
|
||||
- Fixed the rendering of two-block tall crops in the electric greenhouse @Pyritie
|
||||
- Fixed dry ice dropping nothing when broken (#2687) @Pyritie
|
||||
- Fixed the TFC blast furnace on mars but for real this time @Pyritie
|
||||
- Fixed bismuth bronze and black bronze extractor recipes being tiered at MV (#2684) @Inceitious
|
||||
- Fixed fridge tooltip power usage (#2689) @Karo4a
|
||||
- Fixed invar crucible alloying using the wrong amounts of iron and nickel @Pyritie
|
||||
### Translation updates
|
||||
- Chinese (simplified) @jmecn
|
||||
- Russian @Petr211071 + @Nixieeunrare
|
||||
|
|
|
|||
|
|
@ -428,10 +428,13 @@ const registerTooltips = (event) => {
|
|||
})
|
||||
event.addAdvanced(['gtceu:ethanol_bucket'], (item, advanced, text) => {
|
||||
text.add(1, Text.translate("effect.minecraft.nausea").append(Text.of(" (01:00)")).red());
|
||||
text.add(1, Text.translate("effect.minecraft.poison").append(Text.of(" II (00:30)")).red());
|
||||
text.add(2, Text.translate("effect.minecraft.poison").append(Text.of(" II (00:30)")).red());
|
||||
})
|
||||
event.addAdvanced(['gtceu:methanol_bucket'], (item, advanced, text) => {
|
||||
text.add(1, Text.translate("effect.minecraft.blindness").append(Text.of(" (05:00)")).red());
|
||||
text.add(1, Text.translate("effect.minecraft.wither").append(Text.of(" II (01:00)")).red());
|
||||
text.add(2, Text.translate("effect.minecraft.wither").append(Text.of(" II (01:00)")).red());
|
||||
})
|
||||
event.addAdvanced(['gtceu:ice_bucket'], (item, advanced, text) => {
|
||||
text.add(1, Text.translate('tfg.tooltip.cooling_foods'));
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,8 +30,8 @@ function registerTFCMetalsRecipes(event) {
|
|||
]).id('tfg:alloy/tin_alloy')
|
||||
|
||||
event.recipes.tfc.alloy('tfg:invar', [
|
||||
TFC.alloyPart('tfc:nickel', 0.60, 0.70),
|
||||
TFC.alloyPart('tfc:cast_iron', 0.30, 0.40)
|
||||
TFC.alloyPart('tfc:nickel', 0.30, 0.40),
|
||||
TFC.alloyPart('tfc:cast_iron', 0.60, 0.70)
|
||||
]).id('tfg:alloy/invar')
|
||||
|
||||
event.recipes.tfc.alloy('tfg:potin', [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue