mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-02 09:21:57 +01:00
603159dedf
Removes PlayerMicroMoveEvent API, the ability to disable the AsyncCatcher, and the TeleportPassengerVehicleWithPlayer patch
35 lines
No EOL
1.6 KiB
Diff
35 lines
No EOL
1.6 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Sudzzy <originmc@outlook.com>
|
|
Date: Tue, 14 Jul 2015 09:30:28 -0700
|
|
Subject: [PATCH] Disable mood sounds
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
|
@@ -0,0 +0,0 @@ public abstract class World implements IBlockAccess {
|
|
|
|
protected void a(int i, int j, Chunk chunk) {
|
|
this.methodProfiler.c("moodSound");
|
|
- if (this.L == 0 && !this.isClientSide) {
|
|
+ if (!this.paperSpigotConfig.disableMoodSounds && this.L == 0 && !this.isClientSide) { // PaperSpigot - Disable mood sounds
|
|
this.m = this.m * 3 + 1013904223;
|
|
int k = this.m >> 2;
|
|
int l = k & 15;
|
|
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
index 0000000000000000000000000000000000000000..00000000000000000000000000000000000000003 100644
|
|
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
@@ -0,0 +0,0 @@ public class PaperSpigotWorldConfig
|
|
{
|
|
disableIceAndSnow = getBoolean( "disable-ice-and-snow", false );
|
|
}
|
|
+
|
|
+ public boolean disableMoodSounds;
|
|
+ private void disableMoodSounds()
|
|
+ {
|
|
+ disableMoodSounds = getBoolean( "disable-mood-sounds", false );
|
|
+ }
|
|
}
|
|
--
|