diff options
| author | Jazzitch <jasikaby12@gmail.com> | 2026-03-21 16:15:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-21 16:15:47 -0400 |
| commit | 33b008c96ad893986bd2e270ec6c948804aa2bec (patch) | |
| tree | a6444a2260c20cee1e1f0ee55018c232b1982a4e /Minecraft.World | |
| parent | ecb3f00bd6f12e41e442fe7aaaf1923d785ba6bb (diff) | |
Update maximum limits for game entities (#1355)
* Update maximum limits for game entities
Increased the maximum limits for Xbox boats, console minecarts, dispensable fireballs, and projectiles.
* Update maximum limits for game entities
Increased maximum limits for Xbox boats, console minecarts, dispensable fireballs, and projectiles.
Diffstat (limited to 'Minecraft.World')
| -rw-r--r-- | Minecraft.World/Level.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Minecraft.World/Level.h b/Minecraft.World/Level.h index 2be87472..3892d97e 100644 --- a/Minecraft.World/Level.h +++ b/Minecraft.World/Level.h @@ -63,10 +63,10 @@ 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 = 60; // Max number of boats + static const int MAX_CONSOLE_MINECARTS = 60; + static const int MAX_DISPENSABLE_FIREBALLS = 300; + static const int MAX_DISPENSABLE_PROJECTILES = 400; static const int MAX_LEVEL_SIZE = 30000000; static const int maxMovementHeight = 512; // 4J added |
