aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0770-Ability-to-control-player-s-insomnia-and-phantoms.patch
diff options
context:
space:
mode:
authorLulu13022002 <[email protected]>2024-09-21 21:19:02 +0200
committerGitHub <[email protected]>2024-09-21 21:19:02 +0200
commit1ed64f82704c299d0f7ae9af710579be995af8de (patch)
tree8de9a329fed8373ae5eccc59a9ee9558a53ee3fd /patches/server/0770-Ability-to-control-player-s-insomnia-and-phantoms.patch
parent593faf4fc3ad433ef523672b6553124dd99f8ca3 (diff)
downloadPaper-1ed64f82704c299d0f7ae9af710579be995af8de.tar.gz
Paper-1ed64f82704c299d0f7ae9af710579be995af8de.zip
Update launchProjectile API (#11300)
Diffstat (limited to 'patches/server/0770-Ability-to-control-player-s-insomnia-and-phantoms.patch')
-rw-r--r--patches/server/0770-Ability-to-control-player-s-insomnia-and-phantoms.patch67
1 files changed, 67 insertions, 0 deletions
diff --git a/patches/server/0770-Ability-to-control-player-s-insomnia-and-phantoms.patch b/patches/server/0770-Ability-to-control-player-s-insomnia-and-phantoms.patch
new file mode 100644
index 0000000000..03be2495a7
--- /dev/null
+++ b/patches/server/0770-Ability-to-control-player-s-insomnia-and-phantoms.patch
@@ -0,0 +1,67 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jan Villim <[email protected]>
+Date: Sat, 22 Jan 2022 17:56:19 +0100
+Subject: [PATCH] Ability to control player's insomnia and phantoms
+
+
+diff --git a/src/main/java/net/minecraft/world/entity/EntitySelector.java b/src/main/java/net/minecraft/world/entity/EntitySelector.java
+index 302decdccd37c5579473c8fc33adda3956be7603..dca7b99e97f21bf6cfae6ee69eeac95d0bcf6863 100644
+--- a/src/main/java/net/minecraft/world/entity/EntitySelector.java
++++ b/src/main/java/net/minecraft/world/entity/EntitySelector.java
+@@ -28,7 +28,18 @@ public final class EntitySelector {
+ return !entity.isSpectator();
+ };
+ public static final Predicate<Entity> CAN_BE_COLLIDED_WITH = EntitySelector.NO_SPECTATORS.and(Entity::canBeCollidedWith);
+- public static Predicate<Player> IS_INSOMNIAC = (player) -> net.minecraft.util.Mth.clamp(((net.minecraft.server.level.ServerPlayer) player).getStats().getValue(net.minecraft.stats.Stats.CUSTOM.get(net.minecraft.stats.Stats.TIME_SINCE_REST)), 1, Integer.MAX_VALUE) >= 72000; // Paper - Add phantom creative and insomniac controls
++ // Paper start - Ability to control player's insomnia and phantoms
++ public static Predicate<Player> IS_INSOMNIAC = (player) -> {
++ net.minecraft.server.level.ServerPlayer serverPlayer = (net.minecraft.server.level.ServerPlayer) player;
++ int playerInsomniaTicks = serverPlayer.level().paperConfig().entities.behavior.playerInsomniaStartTicks;
++
++ if (playerInsomniaTicks <= 0) {
++ return false;
++ }
++
++ return net.minecraft.util.Mth.clamp(serverPlayer.getStats().getValue(net.minecraft.stats.Stats.CUSTOM.get(net.minecraft.stats.Stats.TIME_SINCE_REST)), 1, Integer.MAX_VALUE) >= playerInsomniaTicks;
++ };
++ // Paper end - Ability to control player's insomnia and phantoms
+
+ private EntitySelector() {}
+ // Paper start - Affects Spawning API
+diff --git a/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java b/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
+index f74d41e57570a40cd5ce4da3076f3210b6594a63..1b1b475ca27e799e251d6f8a8c9fe1a4fd8bae83 100644
+--- a/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
++++ b/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
+@@ -32,13 +32,22 @@ public class PhantomSpawner implements CustomSpawner {
+ } else if (!world.getGameRules().getBoolean(GameRules.RULE_DOINSOMNIA)) {
+ return 0;
+ } else {
++ // Paper start - Ability to control player's insomnia and phantoms
++ if (world.paperConfig().entities.behavior.phantomsSpawnAttemptMaxSeconds <= 0) {
++ return 0;
++ }
++ // Paper end - Ability to control player's insomnia and phantoms
+ RandomSource randomsource = world.random;
+
+ --this.nextTick;
+ if (this.nextTick > 0) {
+ return 0;
+ } else {
+- this.nextTick += (60 + randomsource.nextInt(60)) * 20;
++ // Paper start - Ability to control player's insomnia and phantoms
++ int spawnAttemptMinSeconds = world.paperConfig().entities.behavior.phantomsSpawnAttemptMinSeconds;
++ int spawnAttemptMaxSeconds = world.paperConfig().entities.behavior.phantomsSpawnAttemptMaxSeconds;
++ this.nextTick += (spawnAttemptMinSeconds + randomsource.nextInt(spawnAttemptMaxSeconds - spawnAttemptMinSeconds + 1)) * 20;
++ // Paper end - Ability to control player's insomnia and phantoms
+ if (world.getSkyDarken() < 5 && world.dimensionType().hasSkyLight()) {
+ return 0;
+ } else {
+@@ -59,7 +68,7 @@ public class PhantomSpawner implements CustomSpawner {
+ int j = Mth.clamp(serverstatisticmanager.getValue(Stats.CUSTOM.get(Stats.TIME_SINCE_REST)), 1, Integer.MAX_VALUE);
+ boolean flag2 = true;
+
+- if (randomsource.nextInt(j) >= 72000) {
++ if (randomsource.nextInt(j) >= world.paperConfig().entities.behavior.playerInsomniaStartTicks) { // Paper - Ability to control player's insomnia and phantoms
+ BlockPos blockposition1 = blockposition.above(20 + randomsource.nextInt(15)).east(-10 + randomsource.nextInt(21)).south(-10 + randomsource.nextInt(21));
+ BlockState iblockdata = world.getBlockState(blockposition1);
+ FluidState fluid = world.getFluidState(blockposition1);