From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Jedediah Smith 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 4f8c4a736c5c78cae66dd76b25d787f0d5d00831..2338eae12f5a984e953a332b3a5a6700a031dd5a 100644 --- a/src/main/java/org/bukkit/entity/Player.java +++ b/src/main/java/org/bukkit/entity/Player.java @@ -1509,6 +1509,22 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM @Deprecated // Paper 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. *