summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockSand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blocks/BlockSand.h')
-rw-r--r--src/Blocks/BlockSand.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Blocks/BlockSand.h b/src/Blocks/BlockSand.h
index 48beab138..30d5ae59d 100644
--- a/src/Blocks/BlockSand.h
+++ b/src/Blocks/BlockSand.h
@@ -15,6 +15,12 @@ public:
: cBlockHandler(a_BlockType)
{
}
+
+ virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
+ {
+ UNUSED(a_Meta);
+ return 2;
+ }
};