diff options
Diffstat (limited to 'source/blocks/BlockLeaves.h')
-rw-r--r-- | source/blocks/BlockLeaves.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blocks/BlockLeaves.h b/source/blocks/BlockLeaves.h index c7bca92ac..c2ec697ae 100644 --- a/source/blocks/BlockLeaves.h +++ b/source/blocks/BlockLeaves.h @@ -108,6 +108,11 @@ public: a_World->DigBlock(a_X, a_Y, a_Z);
}
+
+ virtual AString GetStepSound(void) override
+ {
+ return "step.grass";
+ }
};
|