2019-03-20 02:46:00 +01:00
|
|
|
From 8555700222db1b2ae1797468e723cecf28b80d3a Mon Sep 17 00:00:00 2001
|
2016-04-22 08:54:34 +02:00
|
|
|
From: kashike <kashike@vq.lc>
|
|
|
|
Date: Thu, 21 Apr 2016 23:51:55 -0700
|
|
|
|
Subject: [PATCH] Add ability to configure frosted_ice properties
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-12-13 01:40:29 +01:00
|
|
|
index 973ea8bca..7c7d5595a 100644
|
2016-04-22 08:54:34 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-12-13 01:40:29 +01:00
|
|
|
@@ -260,4 +260,14 @@ public class PaperWorldConfig {
|
2016-05-28 03:35:28 +02:00
|
|
|
private void useVanillaScoreboardColoring() {
|
|
|
|
useVanillaScoreboardColoring = getBoolean("use-vanilla-world-scoreboard-name-coloring", false);
|
2016-04-22 08:54:34 +02:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean frostedIceEnabled = true;
|
|
|
|
+ public int frostedIceDelayMin = 20;
|
|
|
|
+ public int frostedIceDelayMax = 40;
|
|
|
|
+ private void frostedIce() {
|
|
|
|
+ this.frostedIceEnabled = this.getBoolean("frosted-ice.enabled", this.frostedIceEnabled);
|
|
|
|
+ this.frostedIceDelayMin = this.getInt("frosted-ice.delay.min", this.frostedIceDelayMin);
|
|
|
|
+ this.frostedIceDelayMax = this.getInt("frosted-ice.delay.max", this.frostedIceDelayMax);
|
2017-03-25 04:18:58 +01:00
|
|
|
+ log("Frosted Ice: " + (this.frostedIceEnabled ? "enabled" : "disabled") + " / delay: min=" + this.frostedIceDelayMin + ", max=" + this.frostedIceDelayMax);
|
2016-04-22 08:54:34 +02:00
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockIceFrost.java b/src/main/java/net/minecraft/server/BlockIceFrost.java
|
2019-03-20 02:46:00 +01:00
|
|
|
index f99046b9b..2c881be1e 100644
|
2016-04-22 08:54:34 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/BlockIceFrost.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockIceFrost.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -12,6 +12,7 @@ public class BlockIceFrost extends BlockIce {
|
2016-04-22 08:54:34 +02:00
|
|
|
}
|
|
|
|
|
2018-07-16 17:34:55 +02:00
|
|
|
public void a(IBlockData iblockdata, World world, BlockPosition blockposition, Random random) {
|
2016-04-22 08:54:34 +02:00
|
|
|
+ if (!world.paperConfig.frostedIceEnabled) return; // Paper - add ability to disable frosted ice
|
2019-01-01 04:15:55 +01:00
|
|
|
if ((random.nextInt(3) == 0 || this.a(world, blockposition, 4)) && world.getLightLevel(blockposition) > 11 - (Integer) iblockdata.get(BlockIceFrost.a) - iblockdata.b(world, blockposition) && this.c(iblockdata, world, blockposition)) {
|
2019-03-20 02:46:00 +01:00
|
|
|
BlockPosition.PooledBlockPosition blockposition_pooledblockposition = BlockPosition.PooledBlockPosition.r();
|
2019-01-01 04:15:55 +01:00
|
|
|
Throwable throwable = null;
|
|
|
|
@@ -27,7 +28,7 @@ public class BlockIceFrost extends BlockIce {
|
2019-03-20 02:46:00 +01:00
|
|
|
IBlockData iblockdata1 = world.getType(blockposition_pooledblockposition);
|
2019-01-01 04:15:55 +01:00
|
|
|
|
2019-03-20 02:46:00 +01:00
|
|
|
if (iblockdata1.getBlock() == this && !this.c(iblockdata1, world, blockposition_pooledblockposition)) {
|
|
|
|
- world.getBlockTickList().a(blockposition_pooledblockposition, this, MathHelper.nextInt(random, 20, 40));
|
|
|
|
+ world.getBlockTickList().a(blockposition_pooledblockposition, this, MathHelper.nextInt(random, world.paperConfig.frostedIceDelayMin, world.paperConfig.frostedIceDelayMax)); // Paper - use configurable min/max delay
|
2018-07-16 17:34:55 +02:00
|
|
|
}
|
|
|
|
}
|
2019-01-01 04:15:55 +01:00
|
|
|
} catch (Throwable throwable1) {
|
|
|
|
@@ -49,7 +50,7 @@ public class BlockIceFrost extends BlockIce {
|
2018-09-01 00:56:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2018-12-17 06:18:06 +01:00
|
|
|
- world.getBlockTickList().a(blockposition, this, MathHelper.nextInt(random, 20, 40));
|
|
|
|
+ world.getBlockTickList().a(blockposition, this, MathHelper.nextInt(random, world.paperConfig.frostedIceDelayMin, world.paperConfig.frostedIceDelayMax)); // Paper - use configurable min/max delay
|
2018-09-01 00:56:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-22 08:54:34 +02:00
|
|
|
--
|
2019-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2016-04-22 08:54:34 +02:00
|
|
|
|