Configurable Grass Spread Tick Rate
Raise this value to make grass spread slower. Set to 0 to turn off grass spreading all together.
This commit is contained in:
parent
3791b8465f
commit
47221671ba
2 changed files with 37 additions and 1 deletions
|
@ -0,0 +1,36 @@
|
||||||
|
From 2a92f48361cd9f48917a02edd1f63ae860685c03 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Aikar <aikar@aikar.co>
|
||||||
|
Date: Sun, 3 Apr 2016 16:28:17 -0400
|
||||||
|
Subject: [PATCH] Configurable Grass Spread Tick Rate
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||||||
|
index 44a33ee..be21c0f 100644
|
||||||
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||||||
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||||||
|
@@ -306,4 +306,10 @@ public class PaperWorldConfig {
|
||||||
|
private void useInhabitedTime() {
|
||||||
|
useInhabitedTime = getBoolean("use-chunk-inhabited-timer", true);
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ public int grassUpdateRate = 1;
|
||||||
|
+ private void grassUpdateRate() {
|
||||||
|
+ grassUpdateRate = Math.max(0, getInt("grass-spread-tick-rate", grassUpdateRate));
|
||||||
|
+ log("Grass Spread Tick Rate: " + grassUpdateRate);
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/BlockGrass.java b/src/main/java/net/minecraft/server/BlockGrass.java
|
||||||
|
index 8fc736d..b656994 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/BlockGrass.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/BlockGrass.java
|
||||||
|
@@ -28,6 +28,7 @@ public class BlockGrass extends Block implements IBlockFragilePlantElement {
|
||||||
|
}
|
||||||
|
|
||||||
|
public void b(World world, BlockPosition blockposition, IBlockData iblockdata, Random random) {
|
||||||
|
+ if (world.paperConfig.grassUpdateRate != 1 && (world.paperConfig.grassUpdateRate < 1 || (MinecraftServer.currentTick + blockposition.hashCode()) % world.paperConfig.grassUpdateRate != 0)) { return; } // Paper
|
||||||
|
if (!world.isClientSide) {
|
||||||
|
int lightLevel = -1; // Paper
|
||||||
|
if (world.getType(blockposition.up()).c() > 2 && (lightLevel = world.getLightLevel(blockposition.up())) < 4) { // Paper - move light check to end to avoid unneeded light lookups
|
||||||
|
--
|
||||||
|
2.8.0
|
||||||
|
|
2
paper
2
paper
|
@ -58,7 +58,7 @@ case "$1" in
|
||||||
cd "$basedir/Paper-API"
|
cd "$basedir/Paper-API"
|
||||||
;;
|
;;
|
||||||
"s" | "server")
|
"s" | "server")
|
||||||
cd "$basedir"
|
cd "$basedir/Paper-Server"
|
||||||
;;
|
;;
|
||||||
"e" | "edit")
|
"e" | "edit")
|
||||||
case "$2" in
|
case "$2" in
|
||||||
|
|
Loading…
Reference in a new issue