mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 01:10:37 +01:00
1e39773b53
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: 9d0221aa API to get client side view distance. 9be7f0ea SPIGOT-4395: Additions to PlayerBedEnterEvent. 01e534c6 Minor cosmetic cleanups to imports etc CraftBukkit Changes:96c461b3
API to get client side view distance.e2785f4e
Remove note about development builda8000588
SPIGOT-4395: Additions to PlayerBedEnterEvent. Spigot Changes: 117d4f7e Rebuild patches
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From 35f1ddc77e007fa75ef13cce62b922bc8dbaab97 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 fc9a32ce7..d9680af01 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -1484,6 +1484,22 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
|
*/
|
|
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>
|
|
--
|
|
2.19.1
|
|
|