Add an option to disable chest's detection of Ocelots/Cats
This commit is contained in:
40
Spigot-Server-Patches/Disable-chest-cat-detection.patch
Normal file
40
Spigot-Server-Patches/Disable-chest-cat-detection.patch
Normal file
@@ -0,0 +1,40 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Aikar <aikar@aikar.co>
|
||||
Date: Sun, 10 Jan 2016 20:40:33 -0600
|
||||
Subject: [PATCH] Disable chest cat detection
|
||||
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/BlockChest.java b/src/main/java/net/minecraft/server/BlockChest.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/net/minecraft/server/BlockChest.java
|
||||
+++ b/src/main/java/net/minecraft/server/BlockChest.java
|
||||
@@ -0,0 +0,0 @@ public class BlockChest extends BlockContainer {
|
||||
}
|
||||
|
||||
private boolean p(World world, BlockPosition blockposition) {
|
||||
+ // PaperSpigot start - Option to disable chest's cat detection (Performance++)
|
||||
+ if (world.paperSpigotConfig.disableChestCatDetection) {
|
||||
+ return false;
|
||||
+ }
|
||||
+ // PaperSpigot end
|
||||
Iterator iterator = world.a(EntityOcelot.class, new AxisAlignedBB((double) blockposition.getX(), (double) (blockposition.getY() + 1), (double) blockposition.getZ(), (double) (blockposition.getX() + 1), (double) (blockposition.getY() + 2), (double) (blockposition.getZ() + 1))).iterator();
|
||||
|
||||
EntityOcelot entityocelot;
|
||||
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 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
|
||||
|
||||
public boolean boatsDropBoats;
|
||||
public boolean disablePlayerCrits;
|
||||
+ public boolean disableChestCatDetection;
|
||||
private void mechanicsChanges()
|
||||
{
|
||||
boatsDropBoats = getBoolean( "game-mechanics.boats-drop-boats", false );
|
||||
disablePlayerCrits = getBoolean( "game-mechanics.disable-player-crits", false );
|
||||
+ disableChestCatDetection = getBoolean( "game-mechanics.disable-chest-cat-detection", false );
|
||||
}
|
||||
|
||||
public boolean netherVoidTopDamage;
|
||||
--
|
||||
Reference in New Issue
Block a user