diff options
Diffstat (limited to 'source/blocks/BlockSlab.h')
-rw-r--r-- | source/blocks/BlockSlab.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source/blocks/BlockSlab.h b/source/blocks/BlockSlab.h index f6443ff91..11d1933c3 100644 --- a/source/blocks/BlockSlab.h +++ b/source/blocks/BlockSlab.h @@ -39,4 +39,13 @@ public: }
return result;
}
-};
\ No newline at end of file +
+ virtual AString GetStepSound(void) override
+ {
+ if (m_BlockID == E_BLOCK_WOODEN_SLAB || m_BlockID ==E_BLOCK_DOUBLE_WOODEN_SLAB)
+ return "step.wood";
+
+ else
+ return "step.stone";
+ }
+};
|