Skip to content

Commit

Permalink
swap degrees because i was dumb lol
Browse files Browse the repository at this point in the history
  • Loading branch information
LudoCrypt committed Jul 23, 2022
1 parent 6a299e7 commit e51af2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ satin_version=1.8.0
sodium_version=mc1.19-0.4.2
iris_version=1.19.x-v1.2.5

mod_version = 6.0.0
mod_version = 6.0.1
maven_group = net.ludocrypt
archives_base_name = limlib
4 changes: 2 additions & 2 deletions src/main/java/net/ludocrypt/limlib/api/LiminalUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public static <E extends Entity> E travelTo(E teleported, ServerWorld destinatio
throw new UnsupportedOperationException("Position " + blockPos.toString() + " is out of this world!");
}

float f = MathHelper.wrapDegrees(target.pitch);
float g = MathHelper.wrapDegrees(target.yaw);
float f = MathHelper.wrapDegrees(target.yaw);
float g = MathHelper.wrapDegrees(target.pitch);

if (teleported instanceof ServerPlayerEntity) {
ChunkPos chunkPos = new ChunkPos(blockPos);
Expand Down

0 comments on commit e51af2e

Please sign in to comment.