Jump to content

Pallemann

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Pallemann

  1. Thank you for your suggestion. I have read about using reflection, but haven't tried it myself either. I did find a solution without using reflection though, which seems to work as intended.
  2. Thank you for your help. Stupidly I have forgotten to register the event bus for the vanilla items. Now that registered the event bus for the vanilla items it works and the stack size is overwritten. I did however, as you mentioned, lose all the properties the egg had, like the sound it made when throwing it and the particle effect when hitting the ground. I did find a solution for that though. I changed this public static final RegistryObject<Item> EGG = VANILLA_ITEMS.register("egg", () -> new Item((new Item.Properties()).maxStackSize(64))); into this public static final RegistryObject<EggItem> EGG = VANILLA_ITEMS.register("egg", () -> new EggItem((new Item.Properties()).maxStackSize(64).group(ItemGroup.MATERIALS))); and now the egg regained all its properties when throwing and the particle effects etc, but the stacksize is increased to 64. Just as I was hoping to achieve. I haven't done extensive testing, only crafting a cake and throwing the eggs, but it seems that this did not break the game or any properties with the EggItem. Thank you again for your help.
  3. Hey, I am fairly new to working on mods on the Minecraft Version 1.16.4. I have dabbled a little in an older version, MC 1.8 to be specific, and created a mod with a friend there. I am now trying to convert my 1.8 mod into one that works with the newest Forge and MC version 1.16.4. I am trying to redo everything I did in the old mod by myself. I have read and sorted through a lot of tutorials and guides on how to create new items and blocks and how to add logic to them etc. for MinecraftForge 1.16.4. I dont have any issues regarding that. I do have issues though with trying to edit the Vanilla Items of the game. In the pervious build of my mod, I modified the stack limit of eggs for example, so that one stack can hold 64 eggs. I would like to change the Vanilla items myself and not install any external mod for that. The line of code was rather simple back then: Items.egg.setMaxStackSize(64); I have tried around a little and somewhere I found a post saying I could just override the Item.Properties by naming the item the same as in the Vanilla game and then only these properties would be overwritten and the rest would stay the same. public static final DeferredRegister<Item> VANILLA_ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, "minecraft"); public static final RegistryObject<Item> EGG = VANILLA_ITEMS.register("egg", () -> new Item((new Item.Properties()).maxStackSize(64))); Unfortunately this didn't work. When launching the game I didn't get any error messages or anything like that, but it just didn't do anything. The egg stack size didn't change and stayed at 16. Is this the right way to approach this or is it maybe more complicated or maybe even less complicated to change these properties? Help would be much appreciated. Thank you in advance.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.