Skip to content

Commit b3ff7f5

Browse files
authored
50% - 100% increase to some mob caps. (MCLCE#789)
* 50% increase to most mob caps, doubling some. * Changed from 75 to 70 to match PC parity. Ambient is back to 20
1 parent b7bd9bb commit b3ff7f5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Minecraft.World/MobCategory.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@ class MobCategory
77
{
88
public:
99
// 4J - putting constants for xbox spawning in one place to tidy things up a bit - all numbers are per level
10-
static const int CONSOLE_MONSTERS_HARD_LIMIT = 50; // Max number of enemies (skeleton, zombie, creeper etc) that the mob spawner will produce
11-
static const int CONSOLE_ANIMALS_HARD_LIMIT = 50; // Max number of animals (cows, sheep, pigs) that the mob spawner will produce
12-
static const int CONSOLE_AMBIENT_HARD_LIMIT = 20; // Ambient mobs
10+
static const int CONSOLE_MONSTERS_HARD_LIMIT = 70; //50 // Max number of enemies (skeleton, zombie, creeper etc) that the mob spawner will produce
11+
static const int CONSOLE_ANIMALS_HARD_LIMIT = 70; //50 // Max number of animals (cows, sheep, pigs) that the mob spawner will produce
12+
static const int CONSOLE_AMBIENT_HARD_LIMIT = 20; //20 // Ambient mobs
1313

14-
static const int MAX_XBOX_CHICKENS = 8; // Max number of chickens that the mob spawner will produce
15-
static const int MAX_XBOX_WOLVES = 8; // Max number of wolves that the mob spawner will produce
16-
static const int MAX_XBOX_MUSHROOMCOWS = 2; // Max number of mushroom cows that the mob spawner will produce
14+
static const int MAX_XBOX_CHICKENS = 16; //8 // Max number of chickens that the mob spawner will produce
15+
static const int MAX_XBOX_WOLVES = 16; //8 // Max number of wolves that the mob spawner will produce
16+
static const int MAX_XBOX_MUSHROOMCOWS = 8; //2 // Max number of mushroom cows that the mob spawner will produce
1717
static const int MAX_XBOX_SNOWMEN = 16; // Max number of snow golems that can be created by placing blocks - 4J-PB increased limit due to player requests
1818
static const int MAX_XBOX_IRONGOLEM = 16; // Max number of iron golems that can be created by placing blocks - 4J-PB increased limit due to player requests
19-
static const int CONSOLE_SQUID_HARD_LIMIT = 5;
19+
static const int CONSOLE_SQUID_HARD_LIMIT = 10; //5
2020
static const int MAX_CONSOLE_BOSS = 1; // Max number of bosses (enderdragon/wither)
21-
21+
2222
static const int MAX_XBOX_ANIMALS_WITH_BREEDING = CONSOLE_ANIMALS_HARD_LIMIT + 20; // Max number of animals that we can produce (in total), when breeding
2323
static const int MAX_XBOX_CHICKENS_WITH_BREEDING = MAX_XBOX_CHICKENS + 8; // Max number of chickens that we can produce (in total), when breeding/hatching
2424
static const int MAX_XBOX_MUSHROOMCOWS_WITH_BREEDING = MAX_XBOX_MUSHROOMCOWS + 20; // Max number of mushroom cows that we can produce (in total), when breeding
2525
static const int MAX_XBOX_WOLVES_WITH_BREEDING = MAX_XBOX_WOLVES + 8; // Max number of wolves that we can produce (in total), when breeding
26-
static const int MAX_VILLAGERS_WITH_BREEDING = 35;
26+
static const int MAX_VILLAGERS_WITH_BREEDING = 50; //35
2727

2828
static const int MAX_XBOX_ANIMALS_WITH_SPAWN_EGG = MAX_XBOX_ANIMALS_WITH_BREEDING + 20;
2929
static const int MAX_XBOX_CHICKENS_WITH_SPAWN_EGG = MAX_XBOX_CHICKENS_WITH_BREEDING + 10;

0 commit comments

Comments
 (0)