Update to 1.19.3 #12

Closed
GirlInPurple wants to merge 2 commits from GirlInPurple/1.17 into 1.17
2 changed files with 6 additions and 6 deletions

View File

@ -3,14 +3,14 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties # Fabric Properties
# check these on https://fabricmc.net/versions.html # check these on https://fabricmc.net/versions.html
minecraft_version=1.19 minecraft_version=1.19.4
yarn_mappings=1.19+build.1 yarn_mappings=1.19.4+build.1
loader_version=0.14.7 loader_version=0.14.17
# Mod Properties # Mod Properties
mod_version = 1.4.0 mod_version = 1.4.1
maven_group = nl.andrewlalis maven_group = nl.andrewlalis
archives_base_name = speed-carts archives_base_name = speed-carts
# Dependencies # Dependencies
fabric_version=0.55.3+1.19 #fabric_version=0.76.0+1.19.4

View File

@ -154,7 +154,7 @@ public abstract class AbstractMinecartMixin extends Entity {
if (this.hasPlayerRider()) { if (this.hasPlayerRider()) {
PlayerEntity player = (PlayerEntity) this.getFirstPassenger(); PlayerEntity player = (PlayerEntity) this.getFirstPassenger();
if (player != null) { if (player != null) {
player.playSound(SoundEvents.BLOCK_NOTE_BLOCK_BELL, SoundCategory.PLAYERS, 1.0f, 1.0f); player.playSound(SoundEvents.BLOCK_REDSTONE_TORCH_BURNOUT, SoundCategory.PLAYERS, 1.0f, 1.0f);
} }
} }
return true; return true;