mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
38 lines
1.5 KiB
Diff
38 lines
1.5 KiB
Diff
From d7b725f84544da3633918ede5a0d708504bb80c8 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 68cb798..64713bd 100644
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
|
@@ -2248,7 +2248,7 @@ 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 da5030a..469b620 100644
|
|
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
@@ -346,4 +346,10 @@ public class PaperSpigotWorldConfig
|
|
{
|
|
disableIceAndSnow = getBoolean( "disable-ice-and-snow", false );
|
|
}
|
|
+
|
|
+ public boolean disableMoodSounds;
|
|
+ private void disableMoodSounds()
|
|
+ {
|
|
+ disableMoodSounds = getBoolean( "disable-mood-sounds", false );
|
|
+ }
|
|
}
|
|
--
|
|
2.7.0
|
|
|