(closed) How do I make a block item fireproof?

Started by Ushank on

Topic category: Help with modding (Java Edition)

Last seen on 21:11, 13. May 2024
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
(closed) How do I make a block item fireproof?
Fri, 05/12/2023 - 02:36 (edited)

I am aware that there are forum topics just like this one, but I haven't been able to find a direct or up-to-date answer.

How do I make a block item immune to fire and lava (like a netherite block)? I'm fine with doing coding to achieve this.

Edited by Ushank on Fri, 05/12/2023 - 02:36
Last seen on 12:23, 4. May 2024
Joined Dec 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
i think you are the only one…
Sat, 04/15/2023 - 15:48

i think you are the only one ( with me ) to asking this but im afraid it's not possible the lastest version ( 2023.1 ) but if you ask for the feature on the github maybe they will add it 

Last seen on 21:11, 13. May 2024
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
ah, sad to know it's not…
Wed, 04/19/2023 - 01:17

ah, sad to know it's not possible at the current moment but thanks for at least answering 👍

Last seen on 18:12, 14. May 2024
Joined Jun 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Not messed with it too much…
Wed, 05/03/2023 - 03:54

Not messed with it too much but I assume you can't change the block item itself.

For Vanilla blocks: Override the natural drop of the block (loot tables I think?) to a custom item that looks identical to the vanilla block. In the new items "properties" page tick immune to fire. Then either make a procedure that when right clicking with the item places the vanilla block and removes 1 of the custom item. Or make a recipe that turns the item into the vanilla block.

With custom blocks just do the same sort of thing. That might be a good work around for you?

Last seen on 21:11, 13. May 2024
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
That seems a bit impractical…
Fri, 05/12/2023 - 02:36

That seems a bit impractical imo, especially since there may be bugs to come with that.