1.14.4 Does item stay in crafting grid when crafted option not working

Started by Hidan on

Topic category: Troubleshooting, bugs, and solutions

Last seen on 02:56, 5. Aug 2024
Joined Apr 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
1.14.4 Does item stay in crafting grid when crafted option not working
Mon, 01/27/2020 - 17:45 (edited)

I have noticed that this function does not work in 1.14.4 
and there is no code in my item that could have refere to it

Here is my workspace:
https://www.mediafire.com/file/nb5xljypo00h38t/MO.zip/file

Item that should stay in crafing grid is Philosopher's stone
also here is example recipe:
sda

It uses 7 Lapiz, 1 Obsidian and 1 Philosopher's stone which is suppose to stay in crafting

Edited by Hidan on Mon, 01/27/2020 - 17:45
I need to request access to…
Mon, 01/27/2020 - 17:34

I need to request access to the drive but would not like to disclose my private email so I am asking for another way to get the workspace if possible.

Last seen on 02:56, 5. Aug 2024
Joined Apr 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Oki added new link Thought…
Mon, 01/27/2020 - 17:45

Oki added new link
Thought that Google Drive don't require permissions 

No need to, I was able to…
Mon, 01/27/2020 - 17:53

I was able to reproduce this. I will fix this, but most likely in 2020.1, for now, you can add this code to your item inner class in the mod element Java code:

public boolean hasContainerItem() {
	return true;
}

public ItemStack getContainerItem(ItemStack itemStack) {
	return new ItemStack(this);
}