
Frieder Hannenheim
Members-
Content Count
6 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout Frieder Hannenheim
-
Rank
Tree Puncher
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
The mappings for older versions are there but not 1.16 http://export.mcpbot.bspk.rs/
-
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
-
Frieder Hannenheim joined the community
-
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}