Skip to content

Commit ecb3f00

Browse files
author
Matthew Toro
authored
Revert "Increase limits for boats, minecarts, fireballs, and height (#1325)" (#1341)
This reverts commit baa9fc0.
1 parent 71d6fba commit ecb3f00

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Minecraft.World/Level.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,16 +63,16 @@ class Level : public LevelSource
6363

6464

6565
public:
66-
static const int MAX_XBOX_BOATS = 400; // Max number of boats
67-
static const int MAX_CONSOLE_MINECARTS = 400;
68-
static const int MAX_DISPENSABLE_FIREBALLS = 2000;
69-
static const int MAX_DISPENSABLE_PROJECTILES = 3000;
66+
static const int MAX_XBOX_BOATS = 40; // Max number of boats
67+
static const int MAX_CONSOLE_MINECARTS = 40;
68+
static const int MAX_DISPENSABLE_FIREBALLS = 200;
69+
static const int MAX_DISPENSABLE_PROJECTILES = 300;
7070

7171
static const int MAX_LEVEL_SIZE = 30000000;
7272
static const int maxMovementHeight = 512; // 4J added
7373

7474
static const int minBuildHeight = 0; // 4J - brought forward from 1.2.3
75-
static const int maxBuildHeight = 512; // 4J - brought forward from 1.2.3
75+
static const int maxBuildHeight = 256; // 4J - brought forward from 1.2.3
7676
static const int genDepthBits = 7;
7777
static const int genDepthBitsPlusFour = genDepthBits + 4;
7878
static const int genDepth = 1 << genDepthBits;

0 commit comments

Comments
 (0)