-
Why are there no 1.16 mappings on the MCP bot site?
The mappings for older versions are there but not 1.16 http://export.mcpbot.bspk.rs/
-
[1.15.2] How can i override the end music without a coremod?
You can do that? That's easier than I thought then
-
[1.15.2] How can i override the end music without a coremod?
I want to add new music to the end. I could do this by adding this: @Nullable @Override @OnlyIn(Dist.CLIENT) public MusicTicker.MusicType getMusicType() { return MY_NEW_MUSIC; } code to the EndDimension. I don't really wan't to use a coremod because I don't really know how to do it and it is considered bad practise
-
Can i wait for the end of a tick to execute a function?
Thank you, I will try that tomorrow.
-
Can i wait for the end of a tick to execute a function?
I need to execute a function but i can't execute it while ticking the entities because it removes an entity. How can i schedule that function to be run after the tick?
-
Frieder Hannenheim joined the community
-
[1.15]How to teleport an Entity hit by an Arrow? I get an error: java.lang.IllegalStateException: Removing entity while ticking!
I want to teleport the Entity hit by my arrow to be teleported to the nether. protected void arrowHit(LivingEntity living) { super.arrowHit(living); if (!living.world.isRemote()){ CustomTeleporter t = new CustomTeleporter(living.getServer().getWorld(living.world.dimension.getType() == DimensionType.THE_NETHER ? DimensionType.OVERWORLD : DimensionType.THE_NETHER)); t.TeleportToNether(living); } } This is the line that is causing an error. playerEntity.teleport(entity.getServer().getWorld(destination), entity.getPosition().getX() * movementFactor, entity.getPosition().getY(), entity.getPosition().getZ() * movementFactor, entity.rotationYaw, entity.rotationPitch); The StackTrace: at net.minecraft.world.server.ServerWorld.removeEntity(ServerWorld.java:1001) ~[?:?] {re:classloading} at net.minecraft.world.server.ServerWorld.removePlayer(ServerWorld.java:1022) ~[?:?] {re:classloading} at net.minecraft.entity.player.ServerPlayerEntity.teleport(ServerPlayerEntity.java:1243) ~[?:?] {re:classloading,pl:accesstransformer:B} at com.fhannenheim.portablenether.FriederTeleporter.TeleportToNether(FriederTeleporter.java:42) ~[?:?] {re:classloading} at com.fhannenheim.portablenether.entities.NetherArrowEntity.arrowHit(NetherArrowEntity.java:37) ~[?:?] {re:classloading}
IPS spam blocked by CleanTalk.