diff options
Diffstat (limited to '')
-rw-r--r-- | source/blocks/BlockMelon.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blocks/BlockMelon.h b/source/blocks/BlockMelon.h index 0f1797a0b..3abcc6efb 100644 --- a/source/blocks/BlockMelon.h +++ b/source/blocks/BlockMelon.h @@ -21,4 +21,9 @@ public: MTRand r1;
return (char)(3 + r1.randInt(4));
}
-};
\ No newline at end of file +
+ virtual AString GetStepSound(void) override
+ {
+ return "step.wood";
+ }
+};
|