Jump to content

Frieder Hannenheim

Members
  • Posts

    6
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Frieder Hannenheim's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. The mappings for older versions are there but not 1.16 http://export.mcpbot.bspk.rs/
  2. You can do that? That's easier than I thought then
  3. 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
  4. 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?
  5. 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}
×
×
  • Create New...

Important Information

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