Heyo! I tried to use a regular expression to hide items in bulk using:
REIEvents.hide('item', event => {
const voltages = ['hv', 'ev', 'iv', 'luv', 'uv'];
voltages.forEach(voltage => {
event.hide(`gtceu:${voltage}_.*`);
});
});
But it doesn't work, it seems they aren't supported. I just decided to list out EVERY machine manually, which isn't too bad:
REIEvents.hide('item', event => {
const voltages = ['hv', 'ev', 'iv', 'luv', 'uv'];
voltages.forEach(voltage => {
event.hide(`gtceu:${voltage}_steam_turbine`)
event.hide(`gtceu:${voltage}_macerator`)
event.hide(`gtceu:${voltage}_alloy_smelter`)
//etc etc
});
});
But I thought I might as well ask if there is a way to use regular expressions(or any other bulk option) for... Future endeavors.