Jump to content

JamesF22293

Members
  • Posts

    4
  • Joined

  • Last visited

JamesF22293's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. From what I can tell, registerAttributes() has been replaced with func_234215_eX, where X varies from mob to mob. Unfortunately this function is only referred to once in GlobalEntityTypeAttributes, an unmodifiable class. What would be a good course of action here, to create a new class that replicates this, or am I missing something obvious here?
  2. Oh, you just gave me the answer. I just realized that I was using AmberEntityTypes to register in the event bus, but ModEntityTypes everywhere else. That fixed it, thank you!
  3. Apologies, AmberEntityTypes is the following code: package com.phoenix.ambermod; import com.sun.org.apache.xerces.internal.impl.dv.dtd.ENTITYDatatypeValidator; import net.minecraft.entity.AreaEffectCloudEntity; import net.minecraft.entity.EntityClassification; import net.minecraft.entity.EntityType; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.RegistryObject; import net.minecraftforge.registries.DeferredRegister; import net.minecraftforge.registries.ForgeRegistries; public class AmberEntityTypes { public static final DeferredRegister<EntityType<?>> ENTITY_TYPES = DeferredRegister.create(ForgeRegistries.ENTITIES, AmberMod.MOD_ID); public static final RegistryObject<EntityType<ExampleEntity>> EXAMPLE_ENTITY = ENTITY_TYPES. register("example_entity", () -> EntityType.Builder.<ExampleEntity>create(ExampleEntity::new, EntityClassification.CREATURE) .size(0.9f, 1.3f) .build(new ResourceLocation(AmberMod.MOD_ID, "example_entity").toString())); }
  4. So, I've been trying to create an entity in 1.16.1, and am having an issue with running forge successfully. It says that that my example entity's registry object is not present. Here's my mod class: package com.phoenix.ambermod; import net.minecraft.block.Block; import net.minecraft.item.Item; import net.minecraft.item.ItemGroup; import net.minecraft.item.ItemStack; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.eventbus.api.IEventBus; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.client.registry.RenderingRegistry; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; import net.minecraftforge.fml.event.lifecycle.FMLLoadCompleteEvent; import net.minecraftforge.fml.event.server.FMLServerStartingEvent; import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import sun.text.resources.mk.FormatData_mk; // The value here should match an entry in the META-INF/mods.toml file @Mod("ambermod") public class AmberMod { // Directly reference a log4j logger. private static final Logger LOGGER = LogManager.getLogger(); public static final String MOD_ID = "ambermod"; public static AmberMod instance; public AmberMod() { FMLJavaModLoadingContext.get().getModEventBus().addListener(this::setup); FMLJavaModLoadingContext.get().getModEventBus().addListener(this::doClientStuff); final IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); modEventBus.addListener(this::setup); AmberEntityTypes.ENTITY_TYPES.register(modEventBus); instance = this; MinecraftForge.EVENT_BUS.register(this); ModRegistry.init(); RenderingRegistry.registerEntityRenderingHandler(ModEntityTypes.EXAMPLE_ENTITY.get(), ExampleEntityRender::new); } public static final ItemGroup TAB = new ItemGroup("amberTab") { @Override public ItemStack createIcon() { return new ItemStack(ModRegistry.AMBER.get()); } }; private void setup(final FMLCommonSetupEvent event) { AmberOreGen.Generate(); } private void doClientStuff(final FMLClientSetupEvent event) { } } Then my entity type class: package com.phoenix.ambermod; import net.minecraft.entity.EntityClassification; import net.minecraft.entity.EntityType; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.RegistryObject; import net.minecraftforge.registries.DeferredRegister; import net.minecraftforge.registries.ForgeRegistries; public class ModEntityTypes { public static final DeferredRegister<EntityType<?>> ENTITY_TYPES = DeferredRegister.create(ForgeRegistries.ENTITIES, AmberMod.MOD_ID); public static final RegistryObject<EntityType<ExampleEntity>> EXAMPLE_ENTITY = ENTITY_TYPES.register("example_entity", () -> EntityType.Builder .<ExampleEntity>create(ExampleEntity::new, EntityClassification .CREATURE).size(0.9f, 0.9f ).build(new ResourceLocation(AmberMod.MOD_ID, "example_entity"). toString())); } Entity itself: package com.phoenix.ambermod; import javax.annotation.Nullable; import net.minecraft.block.BlockState; import net.minecraft.dispenser.IPosition; import net.minecraft.entity.*; import net.minecraft.entity.ai.attributes.AttributeModifierMap; import net.minecraft.entity.ai.attributes.Attributes; import net.minecraft.entity.ai.goal.BreedGoal; import net.minecraft.entity.ai.goal.FollowParentGoal; import net.minecraft.entity.ai.goal.LookAtGoal; import net.minecraft.entity.ai.goal.LookRandomlyGoal; import net.minecraft.entity.ai.goal.PanicGoal; import net.minecraft.entity.ai.goal.SwimGoal; import net.minecraft.entity.ai.goal.TemptGoal; import net.minecraft.entity.ai.goal.WaterAvoidingRandomWalkingGoal; import net.minecraft.entity.effect.LightningBoltEntity; import net.minecraft.entity.monster.ZombifiedPiglinEntity; import net.minecraft.entity.passive.AnimalEntity; import net.minecraft.entity.player.PlayerEntity; import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.ItemStack; import net.minecraft.item.Items; import net.minecraft.item.crafting.Ingredient; import net.minecraft.nbt.CompoundNBT; import net.minecraft.network.datasync.DataParameter; import net.minecraft.network.datasync.DataSerializers; import net.minecraft.network.datasync.EntityDataManager; import net.minecraft.util.ActionResultType; import net.minecraft.util.DamageSource; import net.minecraft.util.Direction; import net.minecraft.util.Hand; import net.minecraft.util.SoundCategory; import net.minecraft.util.SoundEvent; import net.minecraft.util.SoundEvents; import net.minecraft.util.TransportationHelper; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.vector.Vector3d; import net.minecraft.world.Difficulty; import net.minecraft.world.World; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; public class ExampleEntity extends AnimalEntity implements IRideable, IEquipable { private static final DataParameter<Boolean> SADDLED = EntityDataManager.createKey(ExampleEntity.class, DataSerializers.BOOLEAN); private static final DataParameter<Integer> BOOST_TIME = EntityDataManager.createKey(ExampleEntity.class, DataSerializers.VARINT); private static final Ingredient TEMPTATION_ITEMS = Ingredient.fromItems(Items.CARROT, Items.POTATO, Items.BEETROOT); private final BoostHelper field_234214_bx_ = new BoostHelper(this.dataManager, BOOST_TIME, SADDLED); public ExampleEntity(EntityType<? extends ExampleEntity> p_i50250_1_, World p_i50250_2_) { super(p_i50250_1_, p_i50250_2_); } @Override protected void registerGoals() { this.goalSelector.addGoal(0, new SwimGoal(this)); this.goalSelector.addGoal(1, new PanicGoal(this, 1.25D)); this.goalSelector.addGoal(3, new BreedGoal(this, 1.0D)); this.goalSelector.addGoal(4, new TemptGoal(this, 1.2D, Ingredient.fromItems(Items.CARROT_ON_A_STICK), false)); this.goalSelector.addGoal(4, new TemptGoal(this, 1.2D, false, TEMPTATION_ITEMS)); this.goalSelector.addGoal(5, new FollowParentGoal(this, 1.1D)); this.goalSelector.addGoal(6, new WaterAvoidingRandomWalkingGoal(this, 1.0D)); this.goalSelector.addGoal(7, new LookAtGoal(this, PlayerEntity.class, 6.0F)); this.goalSelector.addGoal(8, new LookRandomlyGoal(this)); } public static AttributeModifierMap.MutableAttribute func_234215_eI_() { return MobEntity.func_233666_p_().func_233815_a_(Attributes.field_233818_a_, 10.0D).func_233815_a_(Attributes.field_233821_d_, 0.25D); } /** * For vehicles, the first passenger is generally considered the controller and "drives" the vehicle. For example, * Pigs, Horses, and Boats are generally "steered" by the controlling passenger. */ @Override @Nullable public Entity getControllingPassenger() { return this.getPassengers().isEmpty() ? null : this.getPassengers().get(0); } /** * returns true if all the conditions for steering the entity are met. For pigs, this is true if it is being ridden * by a player and the player is holding a carrot-on-a-stick */ @Override public boolean canBeSteered() { Entity entity = this.getControllingPassenger(); if (!(entity instanceof PlayerEntity)) { return false; } else { PlayerEntity playerentity = (PlayerEntity)entity; return playerentity.getHeldItemMainhand().getItem() == Items.CARROT_ON_A_STICK || playerentity.getHeldItemOffhand().getItem() == Items.CARROT_ON_A_STICK; } } @Override public void notifyDataManagerChange(DataParameter<?> key) { if (BOOST_TIME.equals(key) && this.world.isRemote) { this.field_234214_bx_.func_233616_a_(); } super.notifyDataManagerChange(key); } @Override protected void registerData() { super.registerData(); this.dataManager.register(SADDLED, false); this.dataManager.register(BOOST_TIME, 0); } @Override public void writeAdditional(CompoundNBT compound) { super.writeAdditional(compound); this.field_234214_bx_.func_233618_a_(compound); } /** * (abstract) Protected helper method to read subclass entity data from NBT. */ @Override public void readAdditional(CompoundNBT compound) { super.readAdditional(compound); this.field_234214_bx_.func_233621_b_(compound); } @Override protected SoundEvent getAmbientSound() { return SoundEvents.ENTITY_PIG_AMBIENT; } @Override protected SoundEvent getHurtSound(DamageSource damageSourceIn) { return SoundEvents.ENTITY_PIG_HURT; } @Override protected SoundEvent getDeathSound() { return SoundEvents.ENTITY_PIG_DEATH; } @Override protected void playStepSound(BlockPos pos, BlockState blockIn) { this.playSound(SoundEvents.ENTITY_PIG_STEP, 0.15F, 1.0F); } @Override public ActionResultType func_230254_b_(PlayerEntity p_230254_1_, Hand p_230254_2_) { boolean flag = this.isBreedingItem(p_230254_1_.getHeldItem(p_230254_2_)); if (!flag && this.isHorseSaddled() && !this.isBeingRidden()) { if (!this.world.isRemote) { p_230254_1_.startRiding(this); } return ActionResultType.func_233537_a_(this.world.isRemote); } else { ActionResultType actionresulttype = super.func_230254_b_(p_230254_1_, p_230254_2_); if (!actionresulttype.isSuccessOrConsume()) { ItemStack itemstack = p_230254_1_.getHeldItem(p_230254_2_); return itemstack.getItem() == Items.SADDLE ? itemstack.func_111282_a_(p_230254_1_, this, p_230254_2_) : ActionResultType.PASS; } else { return actionresulttype; } } } @Override public boolean func_230264_L__() { return this.isAlive() && !this.isChild(); } @Override protected void dropInventory() { super.dropInventory(); if (this.isHorseSaddled()) { this.entityDropItem(Items.SADDLE); } } @Override public boolean isHorseSaddled() { return this.field_234214_bx_.func_233620_b_(); } @Override public void func_230266_a_(@Nullable SoundCategory p_230266_1_) { this.field_234214_bx_.func_233619_a_(true); if (p_230266_1_ != null) { this.world.playMovingSound((PlayerEntity)null, this, SoundEvents.ENTITY_PIG_SADDLE, p_230266_1_, 0.5F, 1.0F); } } @Override public Vector3d func_230268_c_(LivingEntity p_230268_1_) { Direction direction = this.getAdjustedHorizontalFacing(); if (direction.getAxis() == Direction.Axis.Y) { return super.func_230268_c_(p_230268_1_); } else { int[][] aint = TransportationHelper.func_234632_a_(direction); BlockPos blockpos = this.func_233580_cy_(); BlockPos.Mutable blockpos$mutable = new BlockPos.Mutable(); for(Pose pose : p_230268_1_.func_230297_ef_()) { AxisAlignedBB axisalignedbb = p_230268_1_.func_233648_f_(pose); for(int[] aint1 : aint) { blockpos$mutable.setPos(blockpos.getX() + aint1[0], blockpos.getY(), blockpos.getZ() + aint1[1]); double d0 = this.world.func_234936_m_(blockpos$mutable); if (TransportationHelper.func_234630_a_(d0)) { Vector3d vector3d = Vector3d.func_237490_a_(blockpos$mutable, d0); if (TransportationHelper.func_234631_a_(this.world, p_230268_1_, axisalignedbb.offset(vector3d))) { p_230268_1_.setPose(pose); return vector3d; } } } } return super.func_230268_c_(p_230268_1_); } } /** * Called when a lightning bolt hits the entity. */ @Override public void onStruckByLightning(LightningBoltEntity lightningBolt) { if (this.world.getDifficulty() != Difficulty.PEACEFUL) { ZombifiedPiglinEntity zombifiedpiglinentity = EntityType.field_233592_ba_.create(this.world); zombifiedpiglinentity.setItemStackToSlot(EquipmentSlotType.MAINHAND, new ItemStack(Items.GOLDEN_SWORD)); zombifiedpiglinentity.setLocationAndAngles(this.getPosX(), this.getPosY(), this.getPosZ(), this.rotationYaw, this.rotationPitch); zombifiedpiglinentity.setNoAI(this.isAIDisabled()); zombifiedpiglinentity.setChild(this.isChild()); if (this.hasCustomName()) { zombifiedpiglinentity.setCustomName(this.getCustomName()); zombifiedpiglinentity.setCustomNameVisible(this.isCustomNameVisible()); } zombifiedpiglinentity.enablePersistence(); this.world.addEntity(zombifiedpiglinentity); this.remove(); } else { super.onStruckByLightning(lightningBolt); } } @Override public void travel(Vector3d p_213352_1_) { this.func_233622_a_(this, this.field_234214_bx_, p_213352_1_); } @Override public float func_230265_N__() { return (float)this.func_233637_b_(Attributes.field_233821_d_) * 0.225F; } @Override public void func_230267_a__(Vector3d p_230267_1_) { super.travel(p_230267_1_); } @Override public boolean boost() { return this.field_234214_bx_.func_233617_a_(this.getRNG()); } @Override public ExampleEntity createChild(AgeableEntity ageable) { ExampleEntity entity = new ExampleEntity(ModEntityTypes.EXAMPLE_ENTITY.get(), this.world); entity.onInitialSpawn(this.world, this.world.getDifficultyForLocation(new BlockPos((IPosition) entity)), SpawnReason.BREEDING, (ILivingEntityData) null, (CompoundNBT) null); return entity; } /** * Checks if the parameter is an item which this animal can be fed to breed it (wheat, carrots or seeds depending on * the animal type) */ @Override public boolean isBreedingItem(ItemStack stack) { return TEMPTATION_ITEMS.test(stack); } @Override @OnlyIn(Dist.CLIENT) public Vector3d func_241205_ce_() { return new Vector3d(0.0D, (double)(0.6F * this.getEyeHeight()), (double)(this.getWidth() * 0.4F)); } } Entity Model: package com.phoenix.ambermod; import net.minecraft.client.renderer.entity.model.QuadrupedModel; import net.minecraft.entity.Entity; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; @OnlyIn(Dist.CLIENT) public class ExampleEntityModel<T extends Entity> extends QuadrupedModel<T> { public ExampleEntityModel() { this(0.0F); } public ExampleEntityModel(float scale) { super(6, scale, false, 4.0F, 4.0F, 2.0F, 2.0F, 24); this.headModel.setTextureOffset(16, 16).addBox(-2.0F, 0.0F, -9.0F, 4.0F, 3.0F, 1.0F, scale); } } Entity Renderer: package com.phoenix.ambermod; import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraft.client.renderer.entity.MobRenderer; import net.minecraft.util.ResourceLocation; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; @OnlyIn(Dist.CLIENT) public class ExampleEntityRender extends MobRenderer<ExampleEntity, ExampleEntityModel<ExampleEntity>> { private static final ResourceLocation TEXTURE = new ResourceLocation (AmberMod.MOD_ID, "textures/entity/example_entity.png"); public ExampleEntityRender(EntityRendererManager rendererManagerIn) { super(rendererManagerIn, new ExampleEntityModel<ExampleEntity>(), 0.5f); } @Override public ResourceLocation getEntityTexture(ExampleEntity entity) { return TEXTURE; } } Latest.log: [02Jul2020 13:10:07.008] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmluserdevclient, --fml.mcpVersion, 20200625.160719, --fml.mcVersion, 1.16.1, --fml.forgeGroup, net.minecraftforge, --fml.forgeVersion, 32.0.33, --version, MOD_DEV, --assetIndex, 1.16, --assetsDir, C:\Users\James\.gradle\caches\forge_gradle\assets, --username, Dev, --accessToken, ❄❄❄❄❄❄❄❄, --userProperties, {}] [02Jul2020 13:10:07.016] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 5.1.0+69+master.79f13f7 starting: java version 1.8.0_251 by Oracle Corporation [02Jul2020 13:10:07.933] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust [02Jul2020 13:10:09.993] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file Mod File: C:\Users\James\Downloads\forge-1.16.1-32.0.17-mdk\run\mods\xray-70-1161.jar is missing mods.toml file [02Jul2020 13:10:09.993] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/SCAN]: File C:\Users\James\Downloads\forge-1.16.1-32.0.17-mdk\run\mods\xray-70-1161.jar has been ignored - it is invalid [02Jul2020 13:10:11.607] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'fmluserdevclient' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\James\.gradle\caches\forge_gradle\assets, --assetIndex, 1.16, --username, Dev, --accessToken, ❄❄❄❄❄❄❄❄, --userProperties, {}] [02Jul2020 13:10:45.278] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', name='PROD' [02Jul2020 13:10:45.302] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev [02Jul2020 13:10:46.340] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.2.2 build 10 [02Jul2020 13:10:49.387] [modloading-worker-1/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 32.0.17, for MC 1.16.1 with MCP 20200625.160719 [02Jul2020 13:10:49.387] [modloading-worker-1/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v32.0.17 Initialized [02Jul2020 13:10:49.657] [modloading-worker-3/ERROR] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Failed to create mod instance. ModID: ambermod, class com.phoenix.ambermod.AmberMod java.lang.NullPointerException: Registry Object not present: ambermod:example_entity at java.util.Objects.requireNonNull(Objects.java:290) ~[?:1.8.0_251] at net.minecraftforge.fml.RegistryObject.get(RegistryObject.java:120) ~[?:?] at com.phoenix.ambermod.AmberMod.<init>(AmberMod.java:43) ~[?:?] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:1.8.0_251] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[?:1.8.0_251] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:1.8.0_251] at java.lang.reflect.Constructor.newInstance(Constructor.java:423) ~[?:1.8.0_251] at java.lang.Class.newInstance(Class.java:442) ~[?:1.8.0_251] at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:131) ~[?:32.0] at java.util.function.Consumer.lambda$andThen$0(Consumer.java:65) ~[?:1.8.0_251] at java.util.function.Consumer.lambda$andThen$0(Consumer.java:65) ~[?:1.8.0_251] at net.minecraftforge.fml.ModContainer.transitionState(ModContainer.java:112) ~[?:?] at net.minecraftforge.fml.ModList.lambda$null$10(ModList.java:135) ~[?:?] at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) [?:1.8.0_251] at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382) [?:1.8.0_251] at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482) [?:1.8.0_251] at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291) [?:1.8.0_251] at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731) [?:1.8.0_251] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) [?:1.8.0_251] at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) [?:1.8.0_251] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) [?:1.8.0_251] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157) [?:1.8.0_251] [02Jul2020 13:10:50.003] [Render thread/FATAL] [net.minecraftforge.fml.ModLoader/LOADING]: Failed to complete lifecycle event CONSTRUCT, 1 errors found [02Jul2020 13:10:50.005] [Render thread/FATAL] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: EventBus 0 shutting down - future events will not be posted. java.lang.Exception: stacktrace at net.minecraftforge.eventbus.EventBus.shutdown(EventBus.java:278) ~[eventbus-2.2.0-service.jar:?] at net.minecraftforge.fml.client.ClientModLoader.lambda$createRunnableWithCatch$5(ClientModLoader.java:111) ~[forge-1.16.1-32.0.17_mapped_snapshot_20200514-1.16-recomp.jar:?] at net.minecraftforge.fml.client.ClientModLoader.begin(ClientModLoader.java:93) ~[forge-1.16.1-32.0.17_mapped_snapshot_20200514-1.16-recomp.jar:?] at net.minecraft.client.Minecraft.<init>(Minecraft.java:430) ~[forge-1.16.1-32.0.17_mapped_snapshot_20200514-1.16-recomp.jar:?] at net.minecraft.client.main.Main.main(Main.java:149) ~[forge-1.16.1-32.0.17_mapped_snapshot_20200514-1.16-recomp.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_251] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_251] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_251] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_251] at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:55) ~[forge-1.16.1-32.0.17_mapped_snapshot_20200514-1.16-recomp.jar:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-5.1.0.jar:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-5.1.0.jar:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-5.1.0.jar:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:81) [modlauncher-5.1.0.jar:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:65) [modlauncher-5.1.0.jar:?] at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.1-32.0.17_mapped_snapshot_20200514-1.16-recomp.jar:?] [02Jul2020 13:11:00.201] [Render thread/INFO] [com.mojang.text2speech.NarratorWindows/]: Narrator library for x64 successfully loaded [02Jul2020 13:11:00.606] [Render thread/INFO] [net.minecraft.resources.SimpleReloadableResourceManager/]: Reloading ResourceManager: Default, Mod Resources [02Jul2020 13:11:00.740] [Worker-Main-8/ERROR] [net.minecraftforge.fml.ModLoader/LOADING]: Skipping lifecycle event SETUP, 1 errors found. [02Jul2020 13:11:00.741] [Worker-Main-8/FATAL] [net.minecraftforge.fml.ModLoader/LOADING]: Failed to complete lifecycle event SETUP, 1 errors found [02Jul2020 13:11:00.741] [Worker-Main-8/FATAL] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: EventBus 0 shutting down - future events will not be posted. java.lang.Exception: stacktrace at net.minecraftforge.eventbus.EventBus.shutdown(EventBus.java:278) ~[eventbus-2.2.0-service.jar:?] at net.minecraftforge.fml.client.ClientModLoader.lambda$createRunnableWithCatch$5(ClientModLoader.java:111) ~[?:?] at net.minecraftforge.fml.client.ClientModLoader.startModLoading(ClientModLoader.java:119) ~[?:?] at net.minecraftforge.fml.client.ClientModLoader.lambda$onreload$3(ClientModLoader.java:101) ~[?:?] at net.minecraftforge.fml.client.ClientModLoader.lambda$createRunnableWithCatch$5(ClientModLoader.java:109) ~[?:?] at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1640) [?:1.8.0_251] at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1632) [?:1.8.0_251] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) [?:1.8.0_251] at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) [?:1.8.0_251] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) [?:1.8.0_251] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157) [?:1.8.0_251] [02Jul2020 13:11:14.814] [Worker-Main-13/ERROR] [net.minecraftforge.fml.ModLoader/LOADING]: Skipping lifecycle event ENQUEUE_IMC, 1 errors found. [02Jul2020 13:11:14.814] [Worker-Main-13/FATAL] [net.minecraftforge.fml.ModLoader/LOADING]: Failed to complete lifecycle event ENQUEUE_IMC, 1 errors found [02Jul2020 13:11:14.814] [Worker-Main-13/FATAL] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: EventBus 0 shutting down - future events will not be posted. java.lang.Exception: stacktrace at net.minecraftforge.eventbus.EventBus.shutdown(EventBus.java:278) ~[eventbus-2.2.0-service.jar:?] at net.minecraftforge.fml.client.ClientModLoader.lambda$createRunnableWithCatch$5(ClientModLoader.java:111) ~[?:?] at net.minecraftforge.fml.client.ClientModLoader.finishModLoading(ClientModLoader.java:133) ~[?:?] at net.minecraftforge.fml.client.ClientModLoader.lambda$onreload$4(ClientModLoader.java:103) ~[?:?] at java.util.concurrent.CompletableFuture.uniRun(CompletableFuture.java:719) [?:1.8.0_251] at java.util.concurrent.CompletableFuture$UniRun.tryFire(CompletableFuture.java:701) [?:1.8.0_251] at java.util.concurrent.CompletableFuture$Completion.exec(CompletableFuture.java:457) [?:1.8.0_251] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) [?:1.8.0_251] at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) [?:1.8.0_251] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) [?:1.8.0_251] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157) [?:1.8.0_251] [02Jul2020 13:11:15.163] [Render thread/INFO] [net.minecraft.client.audio.SoundSystem/]: OpenAL initialized. [02Jul2020 13:11:15.164] [Render thread/INFO] [net.minecraft.client.audio.SoundEngine/SOUNDS]: Sound engine started [02Jul2020 13:11:15.547] [Render thread/INFO] [net.minecraft.client.renderer.texture.AtlasTexture/]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas [02Jul2020 13:11:15.692] [Render thread/INFO] [net.minecraft.client.renderer.texture.AtlasTexture/]: Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas [02Jul2020 13:11:15.694] [Render thread/INFO] [net.minecraft.client.renderer.texture.AtlasTexture/]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas [02Jul2020 13:11:15.697] [Render thread/INFO] [net.minecraft.client.renderer.texture.AtlasTexture/]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas [02Jul2020 13:11:15.704] [Render thread/INFO] [net.minecraft.client.renderer.texture.AtlasTexture/]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas [02Jul2020 13:11:15.705] [Render thread/INFO] [net.minecraft.client.renderer.texture.AtlasTexture/]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas [02Jul2020 13:11:15.710] [Render thread/INFO] [net.minecraft.client.renderer.texture.AtlasTexture/]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas [02Jul2020 13:11:16.835] [Render thread/INFO] [net.minecraft.client.renderer.texture.AtlasTexture/]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas [02Jul2020 13:11:16.851] [Render thread/INFO] [net.minecraft.client.renderer.texture.AtlasTexture/]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas [02Jul2020 13:11:16.854] [Render thread/INFO] [net.minecraft.client.renderer.texture.AtlasTexture/]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas [02Jul2020 13:12:57.928] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! Any help where to register the entity in the main class would be invaluable.
×
×
  • Create New...

Important Information

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