From 92003ad8d335b6d165293c29ef154f86fcc9f08e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Sun, 16 Jun 2024 22:30:43 +0200 Subject: [PATCH] fix: thermal gtc integration client --- .../kubejs/client_scripts/thermal_gtc_integration_client.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packwiz/1.20.1/kubejs/client_scripts/thermal_gtc_integration_client.js b/packwiz/1.20.1/kubejs/client_scripts/thermal_gtc_integration_client.js index b54844a..5c4552f 100755 --- a/packwiz/1.20.1/kubejs/client_scripts/thermal_gtc_integration_client.js +++ b/packwiz/1.20.1/kubejs/client_scripts/thermal_gtc_integration_client.js @@ -39,15 +39,15 @@ const THERMAL_REMOVED_NUGGETS = [ ]; JEIEvents.hideItems((event) => { - REMOVED_PLATES.forEach((metal) => { + THERMAL_REMOVED_PLATES.forEach((metal) => { event.hide(`thermal:${metal}_plate`); }); - REMOVED_GEARS.forEach((metal) => { + THERMAL_REMOVED_GEARS.forEach((metal) => { event.hide(`thermal:${metal}_gear`); }); - REMOVED_NUGGETS.forEach((metal) => { + THERMAL_REMOVED_NUGGETS.forEach((metal) => { event.hide(`thermal:${metal}_nugget`); }); });