Compare commits

..

No commits in common. "GirlInPurple/1.17" and "1.17" have entirely different histories.

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.4 minecraft_version=1.19
yarn_mappings=1.19.4+build.1 yarn_mappings=1.19+build.1
loader_version=0.14.17 loader_version=0.14.7
# Mod Properties # Mod Properties
mod_version = 1.4.1 mod_version = 1.4.0
maven_group = nl.andrewlalis maven_group = nl.andrewlalis
archives_base_name = speed-carts archives_base_name = speed-carts
# Dependencies # Dependencies
#fabric_version=0.76.0+1.19.4 fabric_version=0.55.3+1.19

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_REDSTONE_TORCH_BURNOUT, SoundCategory.PLAYERS, 1.0f, 1.0f); player.playSound(SoundEvents.BLOCK_NOTE_BLOCK_BELL, SoundCategory.PLAYERS, 1.0f, 1.0f);
} }
} }
return true; return true;