Paper/Spigot-API-Patches/0005-Player-affects-spawning-API.patch

37 lines
1.1 KiB
Diff
Raw Normal View History

2019-12-10 23:56:33 +00:00
From 928d6548448689181ff2df6ff172e8a61f651213 Mon Sep 17 00:00:00 2001
2016-02-29 23:09:49 +00:00
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
2019-12-10 23:56:33 +00:00
index 63c6d6a1..46912889 100644
2016-02-29 23:09:49 +00:00
--- a/src/main/java/org/bukkit/entity/Player.java
+++ b/src/main/java/org/bukkit/entity/Player.java
2019-12-10 23:56:33 +00:00
@@ -1450,6 +1450,22 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
@NotNull
2017-05-28 04:25:17 +00:00
public String getLocale();
2016-02-29 23:09:49 +00:00
+ // Paper start
2016-02-29 23:09:49 +00:00
+ /**
+ * 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
2016-02-29 23:09:49 +00:00
+
/**
* Update the list of commands sent to the client.
* <br>
2016-02-29 23:09:49 +00:00
--
2019-12-10 23:56:33 +00:00
2.24.0
2016-02-29 23:09:49 +00:00