Search in sources :

Example 1 with ApiaristArmorUpgrade

use of crazypants.enderio.integration.forestry.upgrades.ApiaristArmorUpgrade in project EnderIO by SleepyTrousers.

the class ForestryControl method registerDarkSteelUpgrades.

@SubscribeEvent
public static void registerDarkSteelUpgrades(@Nonnull RegistryEvent.Register<IDarkSteelUpgrade> event) {
    final IForgeRegistry<IDarkSteelUpgrade> registry = event.getRegistry();
    registry.register(new NaturalistEyeUpgrade());
    registry.register(new ApiaristArmorUpgrade(EntityEquipmentSlot.FEET));
    registry.register(new ApiaristArmorUpgrade(EntityEquipmentSlot.LEGS));
    registry.register(new ApiaristArmorUpgrade(EntityEquipmentSlot.CHEST));
    registry.register(new ApiaristArmorUpgrade(EntityEquipmentSlot.HEAD));
    Log.info("Dark Steel Upgrades: Forestry integration loaded");
}
Also used : NaturalistEyeUpgrade(crazypants.enderio.integration.forestry.upgrades.NaturalistEyeUpgrade) ApiaristArmorUpgrade(crazypants.enderio.integration.forestry.upgrades.ApiaristArmorUpgrade) IDarkSteelUpgrade(crazypants.enderio.api.upgrades.IDarkSteelUpgrade) SubscribeEvent(net.minecraftforge.fml.common.eventhandler.SubscribeEvent)

Aggregations

IDarkSteelUpgrade (crazypants.enderio.api.upgrades.IDarkSteelUpgrade)1 ApiaristArmorUpgrade (crazypants.enderio.integration.forestry.upgrades.ApiaristArmorUpgrade)1 NaturalistEyeUpgrade (crazypants.enderio.integration.forestry.upgrades.NaturalistEyeUpgrade)1 SubscribeEvent (net.minecraftforge.fml.common.eventhandler.SubscribeEvent)1