Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

You can call IForgeRegistryEntry.getRegistryName.toString() and save it to the nbt, to read it you can use ForgeRegistries.BLOCKS.getValue(new ResourceLocation(nbt.getString("saved_block"))) something like that.

  • Author
3 hours ago, poopoodice said:

You can call IForgeRegistryEntry.getRegistryName.toString() and save it to the nbt, to read it you can use ForgeRegistries.BLOCKS.getValue(new ResourceLocation(nbt.getString("saved_block"))) something like that.

Ah! Perfect! I'll take a look at those functions, they look like exactly what I was trying to dig up.

  • Author

  

Ultimately this wound up with the field being an Item instead of a Block but I'm running into a small bump again here. After saving and reloading the world, the field seems to be returning "air" instead of the item it's supposed to be. It seems to be because I'm using custom items and the string-to-item conversion is assuming the 'minecraft' namespace, but I can't figure out how to do the item-to-string with the namespace included.

This is what I have right now:

public void load(BlockState state, CompoundNBT nbt) {
	super.load(state, nbt);
	this.honeyType = null;

	String saved_honey = nbt.getString("Honey");
	this.honeyType = ForgeRegistries.ITEMS.getValue(new ResourceLocation(saved_honey));
}

public CompoundNBT save(CompoundNBT nbt) {
	super.save(nbt);
	nbt.putString("Honey", this.honeyType.toString());

	return nbt;
}


 

Edited by InspectorCaracal

49 minutes ago, InspectorCaracal said:

 




nbt.putString("Honey", this.honeyType.toString());


 

You have to call honeyType.getRegistryName().toString() to receive something like "mymod:honey_block", otherwise you will get "honey_block" that Minecraft will automatically put the prefix "minecraft:" in front of it, which does not exist.

Edited by poopoodice

  • Author
25 minutes ago, poopoodice said:

You have to call honeyType.getRegistryName().toString() to receive something like "mymod:honey_block", otherwise you will get "honey_block" that Minecraft will automatically put the prefix "minecraft:" in front of it, which does not exist.

Ahhhh, got it. That's what I get for going and doing my own thing haha

edit: Made that change and it all works perfectly now, thanks!

Edited by InspectorCaracal

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.