diff options
| author | ButterSword <jasikaby12@gmail.com> | 2026-03-18 20:10:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-18 20:10:24 -0400 |
| commit | baa9fc058d405854de7fea0f6a47b990f04ab27c (patch) | |
| tree | f2c79567c5996f48de7d592b10b255f2d133e40c /Minecraft.World | |
| parent | ab80b34c4551e0f3dd6ebf350ff137e7ea6a52fc (diff) | |
Increase limits for boats, minecarts, fireballs, and height (#1325)
Diffstat (limited to 'Minecraft.World')
| -rw-r--r-- | Minecraft.World/Level.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Minecraft.World/Level.h b/Minecraft.World/Level.h index 2be87472..bd33c0c7 100644 --- a/Minecraft.World/Level.h +++ b/Minecraft.World/Level.h @@ -63,16 +63,16 @@ public: public: - static const int MAX_XBOX_BOATS = 40; // Max number of boats - static const int MAX_CONSOLE_MINECARTS = 40; - static const int MAX_DISPENSABLE_FIREBALLS = 200; - static const int MAX_DISPENSABLE_PROJECTILES = 300; + static const int MAX_XBOX_BOATS = 400; // Max number of boats + static const int MAX_CONSOLE_MINECARTS = 400; + static const int MAX_DISPENSABLE_FIREBALLS = 2000; + static const int MAX_DISPENSABLE_PROJECTILES = 3000; static const int MAX_LEVEL_SIZE = 30000000; static const int maxMovementHeight = 512; // 4J added static const int minBuildHeight = 0; // 4J - brought forward from 1.2.3 - static const int maxBuildHeight = 256; // 4J - brought forward from 1.2.3 + static const int maxBuildHeight = 512; // 4J - brought forward from 1.2.3 static const int genDepthBits = 7; static const int genDepthBitsPlusFour = genDepthBits + 4; static const int genDepth = 1 << genDepthBits; |
