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

This commit is contained in:
Jason Penilla 2021-09-16 16:40:11 -05:00
parent 76a6ed89c7
commit 667baeed68

View File

@ -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
+