2022-11-26 17:59:04 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jan Villim <jan.villim@student.tuke.sk>
|
|
|
|
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
|
2023-06-08 22:56:13 +02:00
|
|
|
index de06ae3e8757c923a6f3f475a34885d2f15af46e..3ff999734d14e2b6e7828e117f5ee32a60c26bc1 100644
|
2022-11-26 17:59:04 +01:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/EntitySelector.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/EntitySelector.java
|
|
|
|
@@ -27,7 +27,18 @@ public final class EntitySelector {
|
|
|
|
return !entity.isSpectator();
|
|
|
|
};
|
|
|
|
public static final Predicate<Entity> CAN_BE_COLLIDED_WITH = EntitySelector.NO_SPECTATORS.and(Entity::canBeCollidedWith);
|
2023-06-08 22:56:13 +02:00
|
|
|
- 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
|
2022-11-26 17:59:04 +01:00
|
|
|
+ // Paper start
|
2023-06-08 22:56:13 +02:00
|
|
|
+ public static Predicate<Player> IS_INSOMNIAC = (player) -> {
|
2022-11-26 17:59:04 +01:00
|
|
|
+ net.minecraft.server.level.ServerPlayer serverPlayer = (net.minecraft.server.level.ServerPlayer) player;
|
2023-06-08 22:56:13 +02:00
|
|
|
+ int playerInsomniaTicks = serverPlayer.level().paperConfig().entities.behavior.playerInsomniaStartTicks;
|
2022-11-26 17:59:04 +01:00
|
|
|
+
|
|
|
|
+ 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
|
|
|
|
|
|
|
|
private EntitySelector() {}
|
|
|
|
// Paper start
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java b/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
|
2023-07-04 10:22:56 +02:00
|
|
|
index b1fc786970b5288a02cc3a46e3fe7784ac566c07..dfeb3e336e06ef01f5401a362755030db942bb07 100644
|
2022-11-26 17:59:04 +01:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
|
2023-06-08 10:47:19 +02:00
|
|
|
@@ -33,13 +33,22 @@ public class PhantomSpawner implements CustomSpawner {
|
2022-11-26 17:59:04 +01:00
|
|
|
} else if (!world.getGameRules().getBoolean(GameRules.RULE_DOINSOMNIA)) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
+ // Paper start
|
|
|
|
+ if (world.paperConfig().entities.behavior.phantomsSpawnAttemptMaxSeconds <= 0) {
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
RandomSource randomsource = world.random;
|
|
|
|
|
|
|
|
--this.nextTick;
|
|
|
|
if (this.nextTick > 0) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
- this.nextTick += (60 + randomsource.nextInt(60)) * 20;
|
|
|
|
+ // Paper start
|
|
|
|
+ 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
|
|
|
|
if (world.getSkyDarken() < 5 && world.dimensionType().hasSkyLight()) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
2023-06-08 10:47:19 +02:00
|
|
|
@@ -60,7 +69,7 @@ public class PhantomSpawner implements CustomSpawner {
|
2023-03-14 22:29:14 +01:00
|
|
|
int j = Mth.clamp(serverstatisticmanager.getValue(Stats.CUSTOM.get(Stats.TIME_SINCE_REST)), 1, Integer.MAX_VALUE);
|
2022-11-26 17:59:04 +01:00
|
|
|
boolean flag2 = true;
|
|
|
|
|
|
|
|
- if (randomsource.nextInt(j) >= 72000) {
|
|
|
|
+ if (randomsource.nextInt(j) >= world.paperConfig().entities.behavior.playerInsomniaStartTicks) { // Paper
|
|
|
|
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);
|