mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 17:29:56 +01:00
56d8811924
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: eda400d3 SPIGOT-6213: MinecraftFont.getWidth(" ") returns 2 when it should be 3 Spigot Changes: aa477927 #100: Allow sending messages from specific UUIDs
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jedediah Smith <jedediah@silencegreys.com>
|
|
Date: Mon, 29 Feb 2016 17:22:34 -0600
|
|
Subject: [PATCH] Player affects spawning API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
|
index f22b21ee12496452f7b2125c131f56ecc74d439a..ab1a2816e3bc78be103823fd61cc5d01f8362552 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -1272,6 +1272,22 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
|
@NotNull
|
|
public String getLocale();
|
|
|
|
+ // Paper start
|
|
+ /**
|
|
+ * Get whether the player can affect mob spawning
|
|
+ *
|
|
+ * @return if the player can affect mob spawning
|
|
+ */
|
|
+ public boolean getAffectsSpawning();
|
|
+
|
|
+ /**
|
|
+ * Set whether the player can affect mob spawning
|
|
+ *
|
|
+ * @param affects Whether the player can affect mob spawning
|
|
+ */
|
|
+ public void setAffectsSpawning(boolean affects);
|
|
+ // Paper end
|
|
+
|
|
/**
|
|
* Update the list of commands sent to the client.
|
|
* <br>
|