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");
}
Aggregations