diff options
author | worktycho <work.tycho@gmail.com> | 2015-03-15 13:16:37 +0100 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2015-03-15 13:16:37 +0100 |
commit | 83531707f3219490eb8ad1e2a7308ff7d4c5fde1 (patch) | |
tree | b379005ad92e48bb696b40fa1b05a35034498710 /src/Blocks | |
parent | Merge pull request #1734 from mc-server/pistons (diff) | |
parent | Use thread_local in cFastRandom (diff) | |
download | cuberite-83531707f3219490eb8ad1e2a7308ff7d4c5fde1.tar cuberite-83531707f3219490eb8ad1e2a7308ff7d4c5fde1.tar.gz cuberite-83531707f3219490eb8ad1e2a7308ff7d4c5fde1.tar.bz2 cuberite-83531707f3219490eb8ad1e2a7308ff7d4c5fde1.tar.lz cuberite-83531707f3219490eb8ad1e2a7308ff7d4c5fde1.tar.xz cuberite-83531707f3219490eb8ad1e2a7308ff7d4c5fde1.tar.zst cuberite-83531707f3219490eb8ad1e2a7308ff7d4c5fde1.zip |
Diffstat (limited to 'src/Blocks')
-rw-r--r-- | src/Blocks/BlockDirt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Blocks/BlockDirt.h b/src/Blocks/BlockDirt.h index 12bca92dd..cc0d845e4 100644 --- a/src/Blocks/BlockDirt.h +++ b/src/Blocks/BlockDirt.h @@ -69,9 +69,9 @@ public: cFastRandom rand; for (int i = 0; i < 2; i++) // Pick two blocks to grow to { - int OfsX = rand.NextInt(3, a_RelX) - 1; // [-1 .. 1] - int OfsY = rand.NextInt(5, a_RelY) - 3; // [-3 .. 1] - int OfsZ = rand.NextInt(3, a_RelZ) - 1; // [-1 .. 1] + int OfsX = rand.NextInt(3) - 1; // [-1 .. 1] + int OfsY = rand.NextInt(5) - 3; // [-3 .. 1] + int OfsZ = rand.NextInt(3) - 1; // [-1 .. 1] BLOCKTYPE DestBlock; NIBBLETYPE DestMeta; |