diff options
Diffstat (limited to 'Minecraft.World/BlockReplacements.cpp')
| -rw-r--r-- | Minecraft.World/BlockReplacements.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Minecraft.World/BlockReplacements.cpp b/Minecraft.World/BlockReplacements.cpp new file mode 100644 index 00000000..7b8aee51 --- /dev/null +++ b/Minecraft.World/BlockReplacements.cpp @@ -0,0 +1,26 @@ +#include "stdafx.h" +#include "BlockReplacements.h" +#include "net.minecraft.world.level.tile.h" + +byteArray BlockReplacements::replacements = byteArray(256); + +void BlockReplacements::staticCtor() +{ + for (int i = 0; i < 256; i++) + { + byte b = (byte) i; + if (b != 0 && Tile::tiles[b & 0xff] == NULL) + { + b = 0; + } + BlockReplacements::replacements[i] = b; + } +} + +void BlockReplacements::replace(byteArray blocks) +{ + for (unsigned int i = 0; i < blocks.length; i++) + { + blocks[i] = replacements[blocks[i] & 0xff]; + } +}
\ No newline at end of file |
