fixed vessel tooltips so they display on the uncolored vessel too

This commit is contained in:
Pyritie 2025-05-08 22:09:47 +01:00
parent 3099e5fa28
commit 669bddb73c

View file

@ -81,13 +81,13 @@ const registerTooltips = (event) =>
const stone_types = global.TFC_STONE_TYPES.concat(other_stone)
stone_types.forEach(stone => {
event.addAdvanced([`tfg:${stone}_support`], (item, advanced, text) => {
text.add(1, text.of('9 x 5 x 9'))
})
})
event.addAdvanced(['#tfg:colorized_fired_vessels'], (item, advanced, text) => {
text.add(1, text.of('§cMax: 3024mb'))
// Vessels
event.addAdvanced(['#tfc:fired_vessels'], (item, advanced, text) => {
text.add(1, text.of('§cMax: 3024mB'))
})
}