2015-06-01 11:22:52 +02:00
|
|
|
From 09effea3cc351eff455eb60541c74b30eff06ce5 Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
From: drXor <mcyoungsota@gmail.com>
|
|
|
|
Date: Sat, 29 Mar 2014 13:44:25 -0400
|
|
|
|
Subject: [PATCH] Configurable dragon death and wither spawn sounds
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityEnderDragon.java b/src/main/java/net/minecraft/server/EntityEnderDragon.java
|
2015-06-01 11:22:52 +02:00
|
|
|
index 657acd7..a64c488 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityEnderDragon.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityEnderDragon.java
|
2015-02-28 12:36:22 +01:00
|
|
|
@@ -578,6 +578,7 @@ public class EntityEnderDragon extends EntityInsentient implements IComplex, IMo
|
2014-07-21 22:46:54 +02:00
|
|
|
double deltaX = this.locX - player.locX;
|
|
|
|
double deltaZ = this.locZ - player.locZ;
|
|
|
|
double distanceSquared = deltaX * deltaX + deltaZ * deltaZ;
|
|
|
|
+ if ( world.spigotConfig.dragonDeathSoundRadius > 0 && distanceSquared > world.spigotConfig.dragonDeathSoundRadius * world.spigotConfig.dragonDeathSoundRadius ) continue; // Spigot
|
|
|
|
if (distanceSquared > viewDistance * viewDistance) {
|
|
|
|
double deltaLength = Math.sqrt(distanceSquared);
|
|
|
|
double relativeX = player.locX + (deltaX / deltaLength) * viewDistance;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityWither.java b/src/main/java/net/minecraft/server/EntityWither.java
|
2015-05-09 22:23:26 +02:00
|
|
|
index 9884a82..fb19bad 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityWither.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityWither.java
|
2015-02-28 12:36:22 +01:00
|
|
|
@@ -191,6 +191,7 @@ public class EntityWither extends EntityMonster implements IRangedEntity {
|
2014-07-21 22:46:54 +02:00
|
|
|
double deltaX = this.locX - player.locX;
|
|
|
|
double deltaZ = this.locZ - player.locZ;
|
|
|
|
double distanceSquared = deltaX * deltaX + deltaZ * deltaZ;
|
|
|
|
+ if ( world.spigotConfig.witherSpawnSoundRadius > 0 && distanceSquared > world.spigotConfig.witherSpawnSoundRadius * world.spigotConfig.witherSpawnSoundRadius ) continue; // Spigot
|
|
|
|
if (distanceSquared > viewDistance * viewDistance) {
|
|
|
|
double deltaLength = Math.sqrt(distanceSquared);
|
|
|
|
double relativeX = player.locX + (deltaX / deltaLength) * viewDistance;
|
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
2015-05-26 11:16:27 +02:00
|
|
|
index c652cc5..75e66d5 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
2015-05-26 11:16:27 +02:00
|
|
|
@@ -282,4 +282,16 @@ public class SpigotWorldConfig
|
2014-07-21 22:46:54 +02:00
|
|
|
maxCollisionsPerEntity = getInt( "max-entity-collisions", 8 );
|
|
|
|
log( "Max Entity Collisions: " + maxCollisionsPerEntity );
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int dragonDeathSoundRadius;
|
|
|
|
+ private void keepDragonDeathPerWorld()
|
|
|
|
+ {
|
|
|
|
+ dragonDeathSoundRadius = getInt( "dragon-death-sound-radius", 0 );
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public int witherSpawnSoundRadius;
|
|
|
|
+ private void witherSpawnSoundRadius()
|
|
|
|
+ {
|
|
|
|
+ witherSpawnSoundRadius = getInt( "wither-spawn-sound-radius", 0 );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2015-05-09 22:23:26 +02:00
|
|
|
2.1.4
|
2014-07-21 22:46:54 +02:00
|
|
|
|