mirror of
https://git.fellies.tech/minecraft/fellies.git
synced 2021-02-13 10:18:48 +00:00
8 lines
265 B
JavaScript
8 lines
265 B
JavaScript
onEvent('client.item_tooltip', (event) => {
|
|
refinedStorageItems.forEach((item) => {
|
|
if (event.item.id == 'refinedstorage:' + item) {
|
|
event.add('Can be dyed through crafting or by right clicking it with dye in-world.');
|
|
}
|
|
});
|
|
});
|