2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: William Blake Galbreath <Blake.Galbreath@GMail.com>
|
|
|
|
Date: Sat, 25 Apr 2020 15:13:41 -0500
|
|
|
|
Subject: [PATCH] Add phantom creative and insomniac controls
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-08-26 04:16:27 +02:00
|
|
|
index 3eed64b9562257b7a9fdfd51137a9ddf2cc0a84a..91b5267dcb24646c29ea1ff0b50f3b369f984244 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-06-16 08:25:38 +02:00
|
|
|
@@ -513,6 +513,13 @@ public class PaperWorldConfig {
|
2021-06-11 14:02:28 +02:00
|
|
|
lightQueueSize = getInt("light-queue-size", lightQueueSize);
|
|
|
|
}
|
2021-06-14 03:06:38 +02:00
|
|
|
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public boolean phantomIgnoreCreative = true;
|
|
|
|
+ public boolean phantomOnlyAttackInsomniacs = true;
|
|
|
|
+ private void phantomSettings() {
|
|
|
|
+ phantomIgnoreCreative = getBoolean("phantoms-do-not-spawn-on-creative-players", phantomIgnoreCreative);
|
|
|
|
+ phantomOnlyAttackInsomniacs = getBoolean("phantoms-only-attack-insomniacs", phantomOnlyAttackInsomniacs);
|
|
|
|
+ }
|
2021-06-14 03:06:38 +02:00
|
|
|
+
|
|
|
|
public int noTickViewDistance;
|
|
|
|
private void viewDistance() {
|
|
|
|
this.noTickViewDistance = this.getInt("viewdistances.no-tick-view-distance", -1);
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/EntitySelector.java b/src/main/java/net/minecraft/world/entity/EntitySelector.java
|
2021-06-14 03:06:38 +02:00
|
|
|
index d17b75ad13bbc8a38cdc2f2d77ee5d88438cec31..8fb89326395a7e70982c0d757b506565e98b12a4 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/EntitySelector.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/EntitySelector.java
|
2021-06-14 03:06:38 +02:00
|
|
|
@@ -26,6 +26,7 @@ public final class EntitySelector {
|
2021-06-11 14:02:28 +02:00
|
|
|
public static final Predicate<Entity> NO_SPECTATORS = (entity) -> {
|
|
|
|
return !entity.isSpectator();
|
|
|
|
};
|
2021-06-14 03:06:38 +02:00
|
|
|
+ public static Predicate<Player> isInsomniac = (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
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-06-14 03:06:38 +02:00
|
|
|
private EntitySelector() {}
|
2021-06-11 14:02:28 +02:00
|
|
|
// Paper start
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/monster/Phantom.java b/src/main/java/net/minecraft/world/entity/monster/Phantom.java
|
2021-07-18 09:41:53 +02:00
|
|
|
index 877095c93e944293dfb52471eda59a24fad2dbc9..460a848bd2a417d05a0bbb084371c98b661a427f 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/monster/Phantom.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/monster/Phantom.java
|
2021-06-14 03:06:38 +02:00
|
|
|
@@ -547,6 +547,7 @@ public class Phantom extends FlyingMob implements Enemy {
|
2021-06-11 14:02:28 +02:00
|
|
|
Player entityhuman = (Player) iterator.next();
|
|
|
|
|
|
|
|
if (Phantom.this.canAttack((LivingEntity) entityhuman, TargetingConditions.DEFAULT)) {
|
|
|
|
+ if (!level.paperConfig.phantomOnlyAttackInsomniacs || EntitySelector.isInsomniac.test(entityhuman)) // Paper
|
|
|
|
Phantom.this.setGoalTarget(entityhuman, org.bukkit.event.entity.EntityTargetEvent.TargetReason.CLOSEST_PLAYER, true); // CraftBukkit - reason
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
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 42effcbd3ca7c38a4e8b1aa835543ad243112a33..79504dc3448402e73b09c4232b1fd0488872cf68 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
|
|
|
|
@@ -53,7 +53,7 @@ public class PhantomSpawner implements CustomSpawner {
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
Player entityhuman = (Player) iterator.next();
|
|
|
|
|
|
|
|
- if (!entityhuman.isSpectator()) {
|
|
|
|
+ if (!entityhuman.isSpectator() && (!world.paperConfig.phantomIgnoreCreative || !entityhuman.isCreative())) { // Paper
|
|
|
|
BlockPos blockposition = entityhuman.blockPosition();
|
|
|
|
|
|
|
|
if (!world.dimensionType().hasSkyLight() || blockposition.getY() >= world.getSeaLevel() && world.canSeeSky(blockposition)) {
|