Example usage for net.minecraftforge.event AttachCapabilitiesEvent.World addCapability

List of usage examples for net.minecraftforge.event AttachCapabilitiesEvent.World addCapability

Introduction

In this page you can find the example usage for net.minecraftforge.event AttachCapabilitiesEvent.World addCapability.

Prototype

public void addCapability(ResourceLocation key, ICapabilityProvider cap) 

Source Link

Document

Adds a capability to be attached to this object.

Usage

From source file:mod.rankshank.arbitraria.common.vars.ArbitraryCaps.java

@SubscribeEvent
public static void attachWorld(AttachCapabilitiesEvent.World event) {
    event.addCapability(OCCURRENCE_KEY, new CapabilityOccurrence(event.getWorld()));
}