mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
871a1b6f25
Test plugin here: https://github.com/Zbob750/AffectsSpawning I believe this originated with SportBukkit, slightly modified for our (and potentially upstream's) usage
40 lines
No EOL
1.4 KiB
Diff
40 lines
No EOL
1.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jedediah Smith <jedediah@silencegreys.com>
|
|
Date: Fri, 8 Aug 2014 22:51:26 -0500
|
|
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 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -0,0 +0,0 @@ public interface Player extends HumanEntity, Conversable, CommandSender, Offline
|
|
{
|
|
throw new UnsupportedOperationException( "Not supported yet." );
|
|
}
|
|
+
|
|
+ /**
|
|
+ * Get whether the player affects mob spawning
|
|
+ *
|
|
+ * @return whether or not the player affects
|
|
+ * mob spawning.
|
|
+ */
|
|
+ public boolean getAffectsSpawning()
|
|
+ {
|
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Set whether or not the player affects mob spawning
|
|
+ *
|
|
+ * @param affects whether or not the player should affect
|
|
+ * spawning or not.
|
|
+ */
|
|
+ public void setAffectsSpawning(boolean affects)
|
|
+ {
|
|
+ throw new UnsupportedOperationException( "Not supported yet" );
|
|
+ }
|
|
}
|
|
|
|
Spigot spigot();
|
|
--
|