13
0
geforkt von Mirrors/Paper

Fix global limit display for MISC mob category (#6612)

Dieser Commit ist enthalten in:
Jason Penilla 2021-09-16 16:40:11 -05:00
Ursprung 76a6ed89c7
Commit 667baeed68

Datei anzeigen

@ -327,7 +327,11 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ }
+
+ public static int globalLimitForCategory(final ServerLevel level, final MobCategory category, final int spawnableChunkCount) {
+ return limitForCategory(level, category) * spawnableChunkCount / NaturalSpawner.MAGIC_NUMBER;
+ final int categoryLimit = limitForCategory(level, category);
+ if (categoryLimit < 1) {
+ return categoryLimit;
+ }
+ return categoryLimit * spawnableChunkCount / NaturalSpawner.MAGIC_NUMBER;
+ }
+ // Paper end
+