summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockLadder.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/blocks/BlockLadder.h')
-rw-r--r--source/blocks/BlockLadder.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/blocks/BlockLadder.h b/source/blocks/BlockLadder.h
index 4c7f37b1f..e30fc884d 100644
--- a/source/blocks/BlockLadder.h
+++ b/source/blocks/BlockLadder.h
@@ -30,5 +30,11 @@ public:
char Dir = cLadder::MetaDataToDirection(a_World->GetBlockMeta( a_X, a_Y, a_Z));
return CanBePlacedAt(a_World, a_X, a_Y, a_Z, Dir);
}
+
+
+ virtual AString GetStepSound(void) override
+ {
+ return "step.wood";
+ }
-}; \ No newline at end of file
+};