Started by
Pokealamine
on
Topic category: Help with MCreator software
I'm trying to add a new class of tool type so that I can make a multitool with its own class.
Images with the problem:
Edited by Pokealamine on Mon, 07/03/2023 - 22:08
I see that "Item.Properties" is already imported, which means that the identifier name will be "Properties". My guess is that you used to be just importing "Item", which let you access "Properties" though "Item.Properties". Unfortunately, ".Properties" was added to the end of the import, which means you can no longer access the rest of "Item".
Try changing "Item.Properties" (on line 31) to just "Properties".