Skip to content

Commit

Permalink
Update to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
andantet committed May 29, 2024
1 parent 77e9bb8 commit 0e3e9aa
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//file:noinspection all

plugins {
id 'fabric-loom' version '1.5-SNAPSHOT'
id 'fabric-loom' version '1.6-SNAPSHOT'
id 'maven-publish'
id "org.jetbrains.kotlin.jvm" version "1.9.+"
}
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ org.gradle.parallel=true

# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version=23w51b
yarn_build=4
loader_version=0.15.6
fabric_version=0.94.0+1.20.5
fabric_kotlin_version=1.10.17+kotlin.1.9.22
minecraft_version=1.21-pre1
yarn_build=3
loader_version=0.15.11
fabric_version=0.99.2+1.21
fabric_kotlin_version=1.10.20+kotlin.1.9.24
kache_version=1.0.5

# Mod Properties
mod_version=2.5.0
mod_version=2.6.0
maven_group=dev.andante
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions src/main/java/dev/andante/audience/Audience.java
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,10 @@ default void respawn() {
ServerPlayNetworkHandler handler = player.networkHandler;
if (player.notInAnyWorld) {
player.notInAnyWorld = false;
handler.player = playerManager.respawnPlayer(player, true);
handler.player = playerManager.respawnPlayer(player, true, Entity.RemovalReason.KILLED);
} else {
if (!(player.getHealth() > 0)) {
handler.player = playerManager.respawnPlayer(player, false);
handler.player = playerManager.respawnPlayer(player, false, Entity.RemovalReason.KILLED);
}
}
}
Expand Down

0 comments on commit 0e3e9aa

Please sign in to comment.