fixes #1429
This commit is contained in:
parent
dabc75b332
commit
4984ddb14a
2 changed files with 7 additions and 5 deletions
|
|
@ -75,7 +75,7 @@ const registerTooltips = (event) =>
|
|||
text.add(3, text.of('§7Wear the full set to be §eFully Insulated§7 from ambient temperatures.'))
|
||||
})
|
||||
|
||||
//supports
|
||||
// Supports
|
||||
global.TFC_WOOD_TYPES.forEach(wood => {
|
||||
event.addAdvanced([`tfc:wood/support/${wood}`], (item, advanced, text) => {
|
||||
text.add(1, text.of('§79 x 5 x 9'))
|
||||
|
|
@ -112,17 +112,16 @@ const registerTooltips = (event) =>
|
|||
|
||||
})
|
||||
|
||||
// Solar Panel
|
||||
|
||||
// Solar Panel
|
||||
event.addAdvanced(['ad_astra:solar_panel'], (item, advanced, text) => {
|
||||
text.add(1, text.of('Produces §664 Eu/t§r on the §6moon§r during the §6day§r'))
|
||||
})
|
||||
|
||||
// MEGA Deprecated 0.10
|
||||
event.addAdvanced(['#megacells:mega_interface'], (item, advanced, text) => {
|
||||
text.add(1, text.of('§cDeprecated cannot be craft anymore'))
|
||||
text.add(1, text.of('§cDeprecated, cannot be crafted any more'))
|
||||
})
|
||||
event.addAdvanced(['#megacells:mega_pattern_provider'], (item, advanced, text) => {
|
||||
text.add(1, text.of('§cDeprecated cannot be craft anymore'))
|
||||
text.add(1, text.of('§cDeprecated, cannot be crafted any more'))
|
||||
})
|
||||
}
|
||||
|
|
@ -272,6 +272,9 @@ const registerGTCEuMaterialModification = (event) => {
|
|||
GTMaterials.Bismuth.setProperty(PropertyKey.ITEM_PIPE, new $ITEM_PIPE_PROPERTY(16384, 0.125));
|
||||
// Bis bronze fluid pipe - same stats as bronze
|
||||
GTMaterials.BismuthBronze.setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(1696, 20, true, false, false, false));
|
||||
// Black bronze is already an item pipe (default gregtech), but you need a fluid pipe in order
|
||||
// for the drum to have temperature containment data
|
||||
GTMaterials.BlackBronze.setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(1696, 20, true, false, false, false));
|
||||
// Red steel fluid pipe - same flow rate as aluminium, bad heat tolerance (same as PE) but can do cryo
|
||||
GTMaterials.RedSteel.setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(370, 75, true, false, true, false));
|
||||
// Blue steel fluid pipe - same flow rate as aluminium, same temp tolerance as tungsten
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue