mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 01:10:37 +01:00
29a01de126
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: 9a793cce Remove no longer applicable caveats to setPlayerListName 7137829e SPIGOT-4496: Undeprecate MapView.getId and make int de33ade0 Remove some draft API designations a35fa838 SPIGOT-4472: Add Consumer scheduler methods CraftBukkit Changes:8cd538e6
SPIGOT-4498: Crash on startupb4ee04ba
SPIGOT-4496: Undeprecate MapView.getId and make intec937d0e
SPIGOT-4472: Add Consumer scheduler methods Spigot Changes: a1f2566f Use monotonic time for watchdog bc4adcbf SPIGOT-4498: Crash on startup bb387e6c Rebuild patches
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From 08ca43a01ec41fc1f62acc5ee776299736289727 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 0993f31b1..a631529df 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -1468,6 +1468,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
|
|
|