1
0
Fork 0
mirror of https://github.com/xHyroM/aetheria.git synced 2024-09-19 12:53:19 +02:00

fix: thermal gtc integration client

This commit is contained in:
Jozef Steinhübl 2024-06-16 22:30:43 +02:00
parent 1db08caeed
commit 92003ad8d3
No known key found for this signature in database
GPG key ID: E6BC90C91973B08F

View file

@ -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`);
});
});