Package: Catcommands
But I do not recommend to use "set_meta()", according to https://rubenwardy.com/minetest_modding_book/en/quality/common_mistakes.html#container.
That page only warns about not setting the stack after using itemstack:get_meta(). Using get_meta() is perfectly fine and recommended. Also, all the calls to get_meta() in this mod are on players not on stacks, so this doesn't apply.
itemstack:get_meta()
get_meta()
converted review into a thread
But I do not recommend to use "set_meta()", according to https://rubenwardy.com/minetest_modding_book/en/quality/common_mistakes.html#container.
That page only warns about not setting the stack after using
itemstack:get_meta()
. Usingget_meta()
is perfectly fine and recommended. Also, all the calls toget_meta()
in this mod are on players not on stacks, so this doesn't apply.converted review into a thread