Jump to content

[1.14.4] ReportedException: Saving entity NBT


andGarrett

Recommended Posts

I get a NullPointerException every time I load a game with my new capability:

 

[21:11:11.880] [Server thread/INFO] [minecraft/MinecraftServer]: Dev joined the game
[21:11:12.204] [Client thread/INFO] [minecraft/AdvancementList]: Loaded 0 advancements
[21:11:12.749] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[21:11:12.751] [Server thread/ERROR] [minecraft/MinecraftServer]: Encountered an unexpected exception
net.minecraft.crash.ReportedException: Saving entity NBT
    at net.minecraft.entity.Entity.writeWithoutTypeId(Entity.java:1592) ~[?:?] {pl:accesstransformer:B}
    at net.minecraft.server.integrated.IntegratedPlayerList.writePlayerData(IntegratedPlayerList.java:27) ~[?:?] {pl:runtimedistcleaner:A}
    at net.minecraft.server.management.PlayerList.saveAllPlayerData(PlayerList.java:624) ~[?:?] {}
    at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:112) ~[?:?] {pl:runtimedistcleaner:A}
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:646) [?:?] {pl:accesstransformer:B}
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_221] {}
Caused by: java.lang.NullPointerException
    at com.garrett.backtobasics.capabilities.BankAccount.BankAccountProvider.serializeNBT(BankAccountProvider.java:36) ~[?:?] {}
    at net.minecraftforge.common.capabilities.CapabilityDispatcher.serializeNBT(CapabilityDispatcher.java:127) ~[?:?] {}
    at net.minecraftforge.common.capabilities.CapabilityProvider.serializeCaps(CapabilityProvider.java:86) ~[?:?] {}
    at net.minecraft.entity.Entity.writeWithoutTypeId(Entity.java:1567) ~[?:?] {pl:accesstransformer:B}

 

Here is the line that causes the exception:

return BANK_ACCOUNT_CAPABILITY.getStorage().writeNBT(BANK_ACCOUNT_CAPABILITY, holder.orElseThrow(nonNullSupplier), null);

 

it happens in line 36 of this class:

package com.garrett.backtobasics.capabilities.BankAccount;

import net.minecraft.nbt.INBT;
import net.minecraft.util.Direction;
import net.minecraftforge.common.capabilities.Capability;
import net.minecraftforge.common.capabilities.CapabilityInject;
import net.minecraftforge.common.capabilities.ICapabilitySerializable;
import net.minecraftforge.common.util.LazyOptional;
import net.minecraftforge.common.util.NonNullSupplier;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

public class BankAccountProvider implements ICapabilitySerializable<INBT> {

    @CapabilityInject(BankAccountCapability.class)
    public static Capability<BankAccountCapability> BANK_ACCOUNT_CAPABILITY = null;

    private final LazyOptional<BankAccountCapability> holder = LazyOptional.of(BankAccountCapability::new);

    @Nonnull
    @Override
    public <T> LazyOptional<T> getCapability(@Nonnull Capability<T> cap, @Nullable Direction side) {
        return BANK_ACCOUNT_CAPABILITY.orEmpty(cap, holder);
    }

    @Override
    public INBT serializeNBT() {
        NonNullSupplier<? extends NullPointerException> nonNullSupplier = new NonNullSupplier<NullPointerException>() {
            @Nonnull
            @Override
            public NullPointerException get() {
                return null;
            }
        };
        return BANK_ACCOUNT_CAPABILITY.getStorage().writeNBT(BANK_ACCOUNT_CAPABILITY, holder.orElseThrow(nonNullSupplier), null);
    }

    @Override
    public void deserializeNBT(INBT nbt) {
        NonNullSupplier<? extends NullPointerException> nonNullSupplier = new NonNullSupplier<NullPointerException>() {
            @Nonnull
            @Override
            public NullPointerException get() {
                return null;
            }
        };
        BANK_ACCOUNT_CAPABILITY.getStorage().readNBT(BANK_ACCOUNT_CAPABILITY, holder.orElseThrow(nonNullSupplier), null, nbt);
    }
}

 

 

it's my first time creating a capability that attaches to players as apposed to the world, so I may have missed an extra step that might need to be taken when attaching capabilities to players. here is where I do the attaching:

package com.garrett.backtobasics.capabilities;

import com.garrett.backtobasics.BackToBasics;
import com.garrett.backtobasics.capabilities.BankAccount.BankAccountProvider;
import com.garrett.backtobasics.capabilities.blockpopulation.BlockPopulationProvider;
import com.garrett.backtobasics.capabilities.itemvalues.ItemValuesProvider;
import com.garrett.backtobasics.capabilities.saleitemlist.SaleItemListProvider;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.World;
import net.minecraftforge.event.AttachCapabilitiesEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;

/**
 * Event handler used to attach capabilities
 */
public class BackToBasicsEventHandler {

    public static final ResourceLocation BLOCK_POPULATION_CAPABILITY = new ResourceLocation(BackToBasics.MODID, "block_population");
    public static final ResourceLocation BANK_ACCOUNT_CAPABILITY = new ResourceLocation(BackToBasics.MODID, "bank_account");
    public static final ResourceLocation ITEM_VALUES_CAPABILITY = new ResourceLocation(BackToBasics.MODID, "item_values");
    public static final ResourceLocation SALE_ITEM_LIST_CAPABILITY = new ResourceLocation(BackToBasics.MODID, "sale_item_list");

    @SubscribeEvent
    public void attachWorldCapability(AttachCapabilitiesEvent<World> event)
    {
        event.addCapability(BLOCK_POPULATION_CAPABILITY, new BlockPopulationProvider());
        event.addCapability(ITEM_VALUES_CAPABILITY, new ItemValuesProvider());

    }
    @SubscribeEvent
    public void attachEntityCapability(AttachCapabilitiesEvent<Entity> event)
    {
        if (event.getObject() instanceof PlayerEntity) {
            event.addCapability(BANK_ACCOUNT_CAPABILITY, new BankAccountProvider());
            event.addCapability(SALE_ITEM_LIST_CAPABILITY, new SaleItemListProvider());
        }
    }
}

 

Link to comment
Share on other sites

1 hour ago, andGarrett said:

@Nonnull @Override public NullPointerException get() {   return null;

I'm sorry what? Its Nonnull and part of a NonNullSupplier but you're returning null...

 

Also did you make sure to register your Capability.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

2 hours ago, Animefan8888 said:

Also did you make sure to register your Capability.

ah, yup. now it works.

 

2 hours ago, Animefan8888 said:

I'm sorry what? Its Nonnull and part of a NonNullSupplier but you're returning null...

 

It's very difficult to find information on how to create custom capabilities in 1.14. When I was first trying to learn how to create a custom capability, I threw a lot of spaghetti code at it just to figure things out. At some point I knew I needed a NonNullSupplier for holder.orelsethrow(???). so I created one and here's what Intellij gave me by default:

 

        NonNullSupplier<? extends NullPointerException> nonNullSupplier = new NonNullSupplier<NullPointerException>() {
            @Nonnull
            @Override
            public NullPointerException get() {
                return null;
            }
        }

 

it returns null by default. Not knowing what it should actually be returning, I left it the way it was, and hey, it seemed to work. I didn't question it, because I know nothing about NonNullSuppliers. What should I be doing instead?

Link to comment
Share on other sites

16 hours ago, diesieben07 said:

Please, please, please read the Javadocs on the methods you are using. orElseThrow explains all this in it's Javadoc. It even gives you a ready to copy example. People (you included!) complain that there is no documentation. Yes, documentation is often scarce. But if it's there you gotta f***ing read it.

Please forgive my lack of java knowledge. I don't always realize something like an optional is part of java as opposed to forge/minecraft. if I had known, I would have looked into it as you suggested. I'm using minecraft modding as a way to get a deeper understanding of java. I learned java on code academy, because I don't have the money to go to college to learn java properly, and I don't have a mentor to help me. this has left many unknown gaps in my knowledge. sometimes I don't even know what I am lacking.

 

I greatly appreciate all the help you and the others have given me. That being said, I must ask you to remember that helping people like me is always optional, and hostility helps no one. We are all human.

Link to comment
Share on other sites

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Make a test without chameleon or storagedrawers
    • In August, during one of the most challenging periods of my life, I was introduced to REMOTE CYBAR RECOVERY by Mr. Johnny. I had recently experienced a devastating loss involving $760,000 worth of Bitcoin. This significant amount of money had been acquired by selling my shares, and I had invested it in Bitcoin, only to have it stolen. Each day felt like a battle as I faced the overwhelming possibility of losing everything I had worked so hard to accumulate. It was an emotional and financial crisis that left me feeling hopeless and desperate, Mr.. Johnny, who had faced a similar situation himself, shared his experience with me. he had also lost access to his digital wallet and had turned to REMOTE CYBAR RECOVERY for assistance. To his relief, they were able to help him recover the wallet password and regain access to his funds. Hearing her positive account of their service provided me with a glimmer of hope, and I decided to reach out to REMOTE CYBAR RECOVERY. From the moment I made contact with them, I knew I had made the right decision. Their response was prompt and professional, which immediately put my mind at ease. The team demonstrated exceptional expertise and dedication throughout the process. They worked tirelessly to address my concerns and meticulously followed up on every detail related to my case. In less than 4 days, a period that felt both incredibly short and incredibly long due to the stress I was under, my funds were fully deposited back into my account. The speed and efficiency with which REMOTE CYBAR RECOVERY handled my case were nothing short of remarkable. Their success in recovering my stolen funds was a relief beyond words and significantly alleviated the financial and emotional strain I had been enduring. The expertise and professionalism exhibited by REMOTE CYBAR RECOVERY. were beyond measure. They provided not only a solution to a complex problem but also restored my confidence in the possibility of recovering from such a dire situation. Their service was a beacon of hope during one of the darkest times in my life, and I am deeply grateful I cannot recommend REMOTE CYBAR RECOVERY highly enough. Their knowledge, responsiveness, and effectiveness in handling cases of this nature are truly commendable. If you ever face a situation where you have lost access to your digital assets or find yourself in need of recovery services, REMOTE CYBAR RECOVERY is a resource you should definitely consider. Their support can make a world of difference, as it did for me. EMAIL S U P P O R T @ R E M O T E C Y B A R R E C O V E R Y . C O M WHATS/APP + 1 7 2 5 2 2 4 2 5 9 7 WEBSITE https:// remote cybarrecovery . com/
    • That might be saved in the NBT of the villager? I'm not sure.
  • Topics

×
×
  • Create New...

Important Information

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