2018-07-27 05:57:31 +02:00
|
|
|
From e974cc2dc77b8e3ca057231ad712724603872f56 Mon Sep 17 00:00:00 2001
|
2016-03-09 05:42:08 +01:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Tue, 8 Mar 2016 23:25:45 -0500
|
|
|
|
Subject: [PATCH] Disable Scoreboards for non players by default
|
|
|
|
|
|
|
|
Entities collision is checking for scoreboards setting.
|
|
|
|
This is very heavy to do map lookups for every collision to check
|
|
|
|
this setting.
|
|
|
|
|
|
|
|
So avoid looking up scoreboards and short circuit to the "not on a team"
|
|
|
|
logic which is most likely to be true.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-07-27 05:57:31 +02:00
|
|
|
index b241c0380d..a4c94845b8 100644
|
2016-03-09 05:42:08 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-02-13 01:44:50 +01:00
|
|
|
@@ -242,4 +242,9 @@ public class PaperWorldConfig {
|
2016-03-09 05:42:08 +01:00
|
|
|
private void disableTeleportationSuffocationCheck() {
|
|
|
|
disableTeleportationSuffocationCheck = getBoolean("disable-teleportation-suffocation-check", false);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean nonPlayerEntitiesOnScoreboards = false;
|
|
|
|
+ private void nonPlayerEntitiesOnScoreboards() {
|
|
|
|
+ nonPlayerEntitiesOnScoreboards = getBoolean("allow-non-player-entities-on-scoreboards", false);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/CommandScoreboard.java b/src/main/java/net/minecraft/server/CommandScoreboard.java
|
2018-07-27 05:57:31 +02:00
|
|
|
index ec9a87239a..b08274d933 100644
|
2016-03-09 05:42:08 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/CommandScoreboard.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/CommandScoreboard.java
|
2016-11-17 03:23:38 +01:00
|
|
|
@@ -492,6 +492,7 @@ public class CommandScoreboard extends CommandAbstract {
|
2016-03-09 05:42:08 +01:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
Entity entity = (Entity) iterator.next();
|
|
|
|
+ if (!entity.world.paperConfig.nonPlayerEntitiesOnScoreboards && !(entity instanceof EntityHuman)) { continue; } // Paper
|
2017-06-08 16:16:51 +02:00
|
|
|
String s2 = f(minecraftserver, icommandlistener, entity.bn());
|
2016-03-09 05:42:08 +01:00
|
|
|
|
|
|
|
if (scoreboard.addPlayerToTeam(s2, s)) {
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2018-07-27 05:57:31 +02:00
|
|
|
index 9d6e684d26..a03a809d61 100644
|
2016-03-09 05:42:08 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2018-07-27 05:57:31 +02:00
|
|
|
@@ -2128,6 +2128,7 @@ public abstract class Entity implements ICommandListener, KeyedObject { // Paper
|
2016-03-09 05:42:08 +01:00
|
|
|
|
2016-05-12 04:07:46 +02:00
|
|
|
@Nullable
|
2017-06-08 16:16:51 +02:00
|
|
|
public ScoreboardTeamBase aY() {
|
2016-03-09 05:42:08 +01:00
|
|
|
+ if (!this.world.paperConfig.nonPlayerEntitiesOnScoreboards && !(this instanceof EntityHuman)) { return null; } // Paper
|
2017-06-08 16:16:51 +02:00
|
|
|
return this.world.getScoreboard().getPlayerTeam(this.bn());
|
2016-03-09 05:42:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2018-07-04 09:55:24 +02:00
|
|
|
2.18.0
|
2016-03-09 05:42:08 +01:00
|
|
|
|