2022-02-12 20:44:54 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
|
|
|
|
Date: Sat, 12 Feb 2022 12:40:50 -0700
|
|
|
|
Subject: [PATCH] Add missing Validate calls to CraftServer#getSpawnLimit
|
|
|
|
|
|
|
|
Copies appropriate checks from CraftWorld#getSpawnLimit
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2023-07-04 10:22:56 +02:00
|
|
|
index c0c88a974955e378c1df678a00d345a61e7f9336..f5c267c9f58f1e4580cd6dfd29e0cd4e089b236c 100644
|
2022-02-12 20:44:54 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2023-07-04 10:22:56 +02:00
|
|
|
@@ -2208,6 +2208,8 @@ public final class CraftServer implements Server {
|
2022-02-12 20:44:54 +01:00
|
|
|
@Override
|
|
|
|
public int getSpawnLimit(SpawnCategory spawnCategory) {
|
|
|
|
// Paper start
|
2023-06-13 01:51:45 +02:00
|
|
|
+ Preconditions.checkArgument(spawnCategory != null, "SpawnCategory cannot be null");
|
|
|
|
+ Preconditions.checkArgument(CraftSpawnCategory.isValidForLimits(spawnCategory), "SpawnCategory." + spawnCategory + " does not have a spawn limit.");
|
2022-02-12 20:44:54 +01:00
|
|
|
return this.getSpawnLimitUnsafe(spawnCategory);
|
|
|
|
}
|
|
|
|
public int getSpawnLimitUnsafe(final SpawnCategory spawnCategory) {
|