2014-01-18 20:36:47 +01:00
|
|
|
From b74e50dac0676245ae0584e91329e07331b7b1e8 Mon Sep 17 00:00:00 2001
|
2013-12-22 11:00:50 +01:00
|
|
|
From: md_5 <git@md-5.net>
|
|
|
|
Date: Sun, 22 Dec 2013 20:58:02 +1100
|
|
|
|
Subject: [PATCH] Add Option to Nerf Mobs from Spawner's
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
index 84bac83..e147244 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
@@ -116,6 +116,7 @@ public abstract class Entity {
|
|
|
|
public final byte activationType = org.spigotmc.ActivationRange.initializeEntityActivationType(this);
|
|
|
|
public final boolean defaultActivationState;
|
|
|
|
public long activatedTick = 0;
|
|
|
|
+ public boolean fromMobSpawner;
|
|
|
|
public void inactiveTick() { }
|
|
|
|
// Spigot end
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityInsentient.java b/src/main/java/net/minecraft/server/EntityInsentient.java
|
|
|
|
index 885a0ef..639354b 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/EntityInsentient.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityInsentient.java
|
|
|
|
@@ -417,6 +417,12 @@ public abstract class EntityInsentient extends EntityLiving {
|
|
|
|
this.world.methodProfiler.a("checkDespawn");
|
|
|
|
this.w();
|
|
|
|
this.world.methodProfiler.b();
|
|
|
|
+ // Spigot Start
|
|
|
|
+ if ( this.fromMobSpawner )
|
|
|
|
+ {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Spigot End
|
|
|
|
this.world.methodProfiler.a("sensing");
|
|
|
|
this.bq.a();
|
|
|
|
this.world.methodProfiler.b();
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/MobSpawnerAbstract.java b/src/main/java/net/minecraft/server/MobSpawnerAbstract.java
|
|
|
|
index bb6b3d5..1eb8818 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/MobSpawnerAbstract.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MobSpawnerAbstract.java
|
|
|
|
@@ -136,6 +136,12 @@ public abstract class MobSpawnerAbstract {
|
|
|
|
SpawnerSpawnEvent event = CraftEventFactory.callSpawnerSpawnEvent(entity, this.b(), this.c(), this.d());
|
|
|
|
if (!event.isCancelled()) {
|
|
|
|
entity.world.addEntity(entity, CreatureSpawnEvent.SpawnReason.SPAWNER); // CraftBukkit
|
|
|
|
+ // Spigot Start
|
|
|
|
+ if ( entity.world.spigotConfig.nerfSpawnerMobs )
|
|
|
|
+ {
|
|
|
|
+ entity.fromMobSpawner = true;
|
|
|
|
+ }
|
|
|
|
+ // Spigot End
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
2014-01-14 09:16:43 +01:00
|
|
|
index e7cb99d..50d3069 100644
|
2013-12-22 11:00:50 +01:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
2014-01-14 09:16:43 +01:00
|
|
|
@@ -250,4 +250,11 @@ public class SpigotWorldConfig
|
2013-12-22 11:00:50 +01:00
|
|
|
zombieAggressiveTowardsVillager = getBoolean( "zombie-aggressive-towards-villager", true );
|
|
|
|
log( "Zombie Aggressive Towards Villager: " + zombieAggressiveTowardsVillager );
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean nerfSpawnerMobs;
|
|
|
|
+ private void nerfSpawnerMobs()
|
|
|
|
+ {
|
|
|
|
+ nerfSpawnerMobs = getBoolean( "nerf-spawner-mobs", false );
|
|
|
|
+ log( "Nerfing mobs spawned from spawners " + nerfSpawnerMobs );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2014-01-18 20:36:47 +01:00
|
|
|
1.8.4.msysgit.0
|
2013-12-22 11:00:50 +01:00
|
|
|
|