diff options
Diffstat (limited to 'source/blocks/BlockChest.h')
-rw-r--r-- | source/blocks/BlockChest.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blocks/BlockChest.h b/source/blocks/BlockChest.h index fd444a9d2..65c0ffa5c 100644 --- a/source/blocks/BlockChest.h +++ b/source/blocks/BlockChest.h @@ -18,5 +18,9 @@ public: OnPlacedByPlayer(a_World, a_Player, a_X, a_Y, a_Z, a_Dir);
}
+ virtual AString GetStepSound(void) override
+ {
+ return "step.wood";
+ }
-};
\ No newline at end of file +};
|