Skip to content

Commit 26c2b3d

Browse files
committed
Update to 1.20.1
1 parent 9655e28 commit 26c2b3d

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

gradle.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
org.gradle.jvmargs=-Xmx1G
33

44
# Fabric Properties
5-
minecraft_version=1.19.4
6-
yarn_mappings=1.19.4+build.1
7-
loader_version=0.14.17
5+
minecraft_version=1.20.1
6+
yarn_mappings=1.20.1+build.1
7+
loader_version=0.14.21
88

99
# Dependencies
10-
fabric_version=0.76.0+1.19.4
11-
plasmid_version=0.5+1.19.4-SNAPSHOT
10+
fabric_version=0.83.0+1.20.1
11+
plasmid_version=0.5+1.20.1-SNAPSHOT
1212

1313
# Mod Properties
14-
mod_version=1.2.0
14+
mod_version=1.2.1
1515
maven_group=io.github.restioson
1616
archives_base_name=loopdeloop

src/main/java/io/github/restioson/loopdeloop/game/LoopDeLoopPlayer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public LoopDeLoopPlayer(ServerPlayerEntity player) {
2525
}
2626

2727
public void teleport(double x, double y, double z) {
28-
ServerWorld world = (ServerWorld) this.player.world;
28+
ServerWorld world = this.player.getServerWorld();
2929
this.player.teleport(world, x, y, z, 0.0F, 0.0F);
3030
this.lastPos = new Vec3d(x, y, z);
3131
}

0 commit comments

Comments
 (0)