From 669bddb73c40cd0b2b917d301ecb01e4529e4393 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Thu, 8 May 2025 22:09:47 +0100 Subject: [PATCH] fixed vessel tooltips so they display on the uncolored vessel too --- kubejs/client_scripts/tooltips.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubejs/client_scripts/tooltips.js b/kubejs/client_scripts/tooltips.js index 1e7f4678e..249b5eaf3 100644 --- a/kubejs/client_scripts/tooltips.js +++ b/kubejs/client_scripts/tooltips.js @@ -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')) }) } \ No newline at end of file