summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockDirt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blocks/BlockDirt.h')
-rw-r--r--src/Blocks/BlockDirt.h21
1 files changed, 18 insertions, 3 deletions
diff --git a/src/Blocks/BlockDirt.h b/src/Blocks/BlockDirt.h
index 3d671d218..d93bdd22d 100644
--- a/src/Blocks/BlockDirt.h
+++ b/src/Blocks/BlockDirt.h
@@ -9,7 +9,9 @@
-/// Handler used for both dirt and grass
+
+
+/** Handler used for all types of dirt and grass */
class cBlockDirtHandler :
public cBlockHandler
{
@@ -18,7 +20,6 @@ public:
: cBlockHandler(a_BlockType)
{
}
-
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
{
@@ -33,7 +34,6 @@ public:
}
}
-
virtual void OnUpdate(cChunkInterface & cChunkInterface, cWorldInterface & a_WorldInterface, cBlockPluginInterface & a_PluginInterface, cChunk & a_Chunk, int a_RelX, int a_RelY, int a_RelZ) override
{
if (m_BlockType != E_BLOCK_GRASS)
@@ -109,6 +109,21 @@ public:
}
} // for i - repeat twice
}
+
+ virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
+ {
+ UNUSED(a_Meta);
+ switch (m_BlockType)
+ {
+ case E_BLOCK_DIRT: return 10;
+ case E_BLOCK_GRASS: return 1;
+ default:
+ {
+ ASSERT(!"Unhandled blocktype in dirt handler!");
+ return 0;
+ }
+ }
+ }
} ;