diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2017-05-19 13:45:03 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2017-05-19 13:45:03 +0200 |
commit | 7c4254ba34f69a859ad5d66f052d8de333673c6f (patch) | |
tree | 3d1f9839e5ce3c00c6f887eee2bcf7360dbd2bfb | |
parent | b2a5b1942214eb82c6fb4200a232f0f6b6960ee2 (diff) | |
download | MinedMap-7c4254ba34f69a859ad5d66f052d8de333673c6f.tar MinedMap-7c4254ba34f69a859ad5d66f052d8de333673c6f.zip |
Resource/BlockType: correctly distinguish stone subtypes
-rw-r--r-- | src/Resource/BlockType.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Resource/BlockType.cpp b/src/Resource/BlockType.cpp index f738e76..94dd233 100644 --- a/src/Resource/BlockType.cpp +++ b/src/Resource/BlockType.cpp @@ -32,7 +32,7 @@ namespace Resource { const BlockType BLOCK_TYPES[256] = { {false, false, {0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000, 0x000000,}}, /* 0 */ - {true, false, {0x7d7d7d, 0x7d7d7d, 0x7d7d7d, 0x7d7d7d, 0x7d7d7d, 0x7d7d7d, 0x7d7d7d, 0, 0, 0, 0, 0, 0, 0, 0, 0, }}, /* 1 */ + {true, false, {0x7d7d7d, 0x997162, 0x9f7262, 0xb3b3b6, 0xb7b7b9, 0x828383, 0x858586, 0, 0, 0, 0, 0, 0, 0, 0, 0, }}, /* 1 */ {true, true, {0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393, 0x939393,}}, /* 2 */ {true, false, {0x866043, 0x866043, 0x5a3f1c, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }}, /* 3 */ {true, false, {0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a,}}, /* 4 */ |