Begin update to 1.20.5
This commit is contained in:
		
					parent
					
						
							
								73da69c09e
							
						
					
				
			
			
				commit
				
					
						47ee5579ff
					
				
			
		
					 1080 changed files with 381 additions and 528 deletions
				
			
		|  | @ -0,0 +1,20 @@ | |||
| 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
 | ||||
| index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
 | ||||
| --- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
 | ||||
| +++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
 | ||||
| @@ -0,0 +0,0 @@ public final class CraftServer implements Server {
 | ||||
|      @Override | ||||
|      public int getSpawnLimit(SpawnCategory spawnCategory) { | ||||
|          // Paper start - Add mobcaps commands | ||||
| +        Preconditions.checkArgument(spawnCategory != null, "SpawnCategory cannot be null");
 | ||||
| +        Preconditions.checkArgument(CraftSpawnCategory.isValidForLimits(spawnCategory), "SpawnCategory." + spawnCategory + " does not have a spawn limit.");
 | ||||
|          return this.getSpawnLimitUnsafe(spawnCategory); | ||||
|      } | ||||
|      public int getSpawnLimitUnsafe(final SpawnCategory spawnCategory) { | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Jake Potrebic
				Jake Potrebic