Skip to content

Commit

Permalink
Update to 1.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hashalite committed Jun 15, 2023
1 parent af9ba14 commit 4b22d32
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
org.gradle.jvmargs=-Xmx2G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
mc_version=1.19.4
mc_major_version=1.19
yarn_mappings=1.19.4+build.1
loader_version=0.14.17
mc_version=1.20.1
mc_major_version=1.20
yarn_mappings=1.20.1+build.2
loader_version=0.14.21
# Mod Properties
mod_version=1.1.9
mod_version=1.1.10
maven_group=net.xolt
archives_base_name=freecam-fabric
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.76.0+1.19.4
modmenu_version=6.1.0-rc.4
cloth_version=10.0.96
fabric_version=0.83.1+1.20.1
modmenu_version=7.0.1
cloth_version=11.0.99
4 changes: 2 additions & 2 deletions src/main/java/net/xolt/freecam/util/FreeCamera.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

public class FreeCamera extends ClientPlayerEntity {

private static final ClientPlayNetworkHandler NETWORK_HANDLER = new ClientPlayNetworkHandler(MC, MC.currentScreen, MC.getNetworkHandler().getConnection(), MC.getCurrentServerEntry(), new GameProfile(UUID.randomUUID(), "FreeCamera"), MC.getTelemetryManager().createWorldSession(false, null)) {
private static final ClientPlayNetworkHandler NETWORK_HANDLER = new ClientPlayNetworkHandler(MC, MC.currentScreen, MC.getNetworkHandler().getConnection(), MC.getCurrentServerEntry(), new GameProfile(UUID.randomUUID(), "FreeCamera"), MC.getTelemetryManager().createWorldSession(false, null, null)) {
@Override
public void sendPacket(Packet<?> packet) {
}
Expand Down Expand Up @@ -198,6 +198,6 @@ public void tickMovement() {
}
super.tickMovement();
getAbilities().flying = true;
onGround = false;
setOnGround(false);
}
}
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
"depends": {
"fabricloader": ">=0.12.11",
"fabric": "*",
"minecraft": "1.19.4"
"minecraft": "~1.20"
}
}

0 comments on commit 4b22d32

Please sign in to comment.