2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Thu, 10 Apr 2014 23:18:28 -0400
|
|
|
|
Subject: [PATCH] Spawn Reason API
|
|
|
|
|
|
|
|
|
2021-08-25 09:59:26 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/RegionAccessor.java b/src/main/java/org/bukkit/RegionAccessor.java
|
2022-01-12 22:39:20 +01:00
|
|
|
index a89fff5c164881be0286ec2240e94dd5883ecc40..e55f6e2baf35dbd91c433ab9e62713eaac85435b 100644
|
2021-08-25 09:59:26 +02:00
|
|
|
--- a/src/main/java/org/bukkit/RegionAccessor.java
|
|
|
|
+++ b/src/main/java/org/bukkit/RegionAccessor.java
|
2022-01-12 22:39:20 +01:00
|
|
|
@@ -10,6 +10,7 @@ import org.bukkit.block.data.BlockData;
|
2021-08-25 09:59:26 +02:00
|
|
|
import org.bukkit.entity.Entity;
|
|
|
|
import org.bukkit.entity.EntityType;
|
|
|
|
import org.bukkit.entity.LivingEntity;
|
2021-06-11 14:02:28 +02:00
|
|
|
+import org.bukkit.event.entity.CreatureSpawnEvent;
|
2021-08-25 09:59:26 +02:00
|
|
|
import org.bukkit.util.Consumer;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
2022-01-12 22:39:20 +01:00
|
|
|
@@ -309,7 +310,34 @@ public interface RegionAccessor {
|
2021-06-11 14:02:28 +02:00
|
|
|
* {@link Entity} requested cannot be spawned
|
|
|
|
*/
|
|
|
|
@NotNull
|
2021-08-25 09:59:26 +02:00
|
|
|
- <T extends Entity> T spawn(@NotNull Location location, @NotNull Class<T> clazz, @Nullable Consumer<T> function) throws IllegalArgumentException;
|
|
|
|
+ // Paper start
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public default <T extends Entity> T spawn(@NotNull Location location, @NotNull Class<T> clazz, @Nullable Consumer<T> function) throws IllegalArgumentException {
|
|
|
|
+ return spawn(location, clazz, CreatureSpawnEvent.SpawnReason.CUSTOM, function);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @NotNull
|
2021-08-25 09:59:26 +02:00
|
|
|
+ public default <T extends Entity> T spawn(@NotNull Location location, @NotNull Class<T> clazz, @NotNull CreatureSpawnEvent.SpawnReason reason) throws IllegalArgumentException {
|
|
|
|
+ return spawn(location, clazz, reason, null);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @NotNull
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public default <T extends Entity> T spawn(@NotNull Location location, @NotNull Class<T> clazz, @NotNull CreatureSpawnEvent.SpawnReason reason, @Nullable Consumer<T> function) throws IllegalArgumentException {
|
|
|
|
+ return spawn(location, clazz, function, reason);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @NotNull
|
2021-08-25 09:59:26 +02:00
|
|
|
+ public default Entity spawnEntity(@NotNull Location loc, @NotNull org.bukkit.entity.EntityType type, @NotNull CreatureSpawnEvent.SpawnReason reason) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ return spawn(loc, (Class<Entity>) type.getEntityClass(), reason, null);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @NotNull
|
2021-08-25 09:59:26 +02:00
|
|
|
+ public default Entity spawnEntity(@NotNull Location loc, @NotNull org.bukkit.entity.EntityType type, @NotNull CreatureSpawnEvent.SpawnReason reason, @Nullable Consumer<Entity> function) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ return spawn(loc, (Class<Entity>) type.getEntityClass(), reason, function);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @NotNull
|
|
|
|
+ public <T extends Entity> T spawn(@NotNull Location location, @NotNull Class<T> clazz, @Nullable Consumer<T> function, @NotNull CreatureSpawnEvent.SpawnReason reason) throws IllegalArgumentException;
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
/**
|
2021-08-25 09:59:26 +02:00
|
|
|
* Creates a new entity at the given {@link Location} with the supplied
|