Posted May 17, 20169 yr I'm kind of a noob, and this is what code I have: @Override public Item getItemDropped(int metadata, Random random, int fortune){ return cms.itemAcidDust; } How would I be able to drop 4 of itemAcidDust? I am on my journey of making a remake of matmos, as explained here.
May 17, 20169 yr There is a method called quantityDropped. You need to Override it with your own value for example: @Override public int quantityDropped(Random rand){ return 2 + rand.nextInt(2); } Try out my new Modpack for MC 1.15.2 https://www.curseforge.com/minecraft/modpacks/terran-civilization
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.