summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockRedstoneTorch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blocks/BlockRedstoneTorch.h')
-rw-r--r--src/Blocks/BlockRedstoneTorch.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Blocks/BlockRedstoneTorch.h b/src/Blocks/BlockRedstoneTorch.h
index 8416a415c..21d005052 100644
--- a/src/Blocks/BlockRedstoneTorch.h
+++ b/src/Blocks/BlockRedstoneTorch.h
@@ -17,12 +17,17 @@ public:
{
}
-
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
{
// Always drop the ON torch, meta 0
a_Pickups.push_back(cItem(E_BLOCK_REDSTONE_TORCH_ON, 1, 0));
}
+
+ virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
+ {
+ UNUSED(a_Meta);
+ return 0;
+ }
} ;