2015-09-19 16:34:17 +02:00
|
|
|
From 87d59743e8e845b874b622a0d9ef86cdd75ffda3 Mon Sep 17 00:00:00 2001
|
2015-07-14 18:34:10 +02:00
|
|
|
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
|
2015-09-19 16:34:17 +02:00
|
|
|
index 254e155..1c82aaa 100644
|
2015-07-14 18:34:10 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2015-09-19 16:34:17 +02:00
|
|
|
@@ -2272,7 +2272,7 @@ public abstract class World implements IBlockAccess {
|
2015-07-14 18:34:10 +02:00
|
|
|
|
|
|
|
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
|
2015-09-13 02:57:39 +02:00
|
|
|
index 25e92f8..8e5de323 100644
|
2015-07-14 18:34:10 +02:00
|
|
|
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
|
|
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
|
|
@@ -378,4 +378,10 @@ public class PaperSpigotWorldConfig
|
|
|
|
{
|
|
|
|
disableIceAndSnow = getBoolean( "disable-ice-and-snow", false );
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean disableMoodSounds;
|
|
|
|
+ private void disableMoodSounds()
|
|
|
|
+ {
|
|
|
|
+ disableMoodSounds = getBoolean( "disable-mood-sounds", false );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2015-09-13 06:29:23 +02:00
|
|
|
2.5.2
|
2015-07-14 18:34:10 +02:00
|
|
|
|