danonek Posted July 1, 2024 Posted July 1, 2024 Hi, soo recently i started modding and i wanted to make my code more organised ect. i made functions to register stuff, but i have problem with one. Soo, when i try to register Creative Tab, i want to give it a icon, but it requires me to give it Supplier<ItemStack> but i can only have ItemStack, is there any way to convert this type into another? Quote
DonKresenko Posted July 8, 2024 Posted July 8, 2024 (edited) Supplier is just a function that produces a value of type T (in your case ItemStack). You can use lambda here () -> new ItemStack(Blocks.ANVIL) Edited July 8, 2024 by DonKresenko Quote _ ___ ___| |__ _ __ / __/ __| '_ \| '_ \ \__ \__ \ | | | | | | |___/___/_| |_|_| |_|
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.