Jump to content

Capabilities Is Deprecated?


NolValue

Recommended Posts

So, I've been working on a mod for a fair bit, and I finally got around to working on capabilities, which are linked to the player. However, whenever I try to actually register one using 

CapabilityManager.INSTANCE.register(IClass.class, new Storage(), Class.class);

It states that the register function is deprecated.

Heading over to the actual CapabilityManager file I find this:

@Deprecated
public <T> void register(Class<T> type, Capability.IStorage<T> storage, final Class<? extends T> implementation)
{
    Preconditions.checkArgument(implementation != null, "Attempted to register a capability with no default implementation");
    register(type, storage, () ->
    {
        try {
            return implementation.newInstance();
        } catch (InstantiationException | IllegalAccessException e) {
            throw new RuntimeException(e);
        }
    });
}

The file is stating that the register is deprecated, and will be fully removed for 1.13. Is there some alternative to what I am doing? If so, how does one go about doing it?

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



×
×
  • Create New...

Important Information

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