diff --git a/lib/react/sound.jsx b/lib/react/sound.jsx index fbd6c88..f311603 100644 --- a/lib/react/sound.jsx +++ b/lib/react/sound.jsx @@ -37,9 +37,9 @@ class SoundController { var self = this; if (!self.gather.playable) return; self.gather.music.play(); - self.gather.music.playable = false; + self.gather.playable = false; setTimeout(function () { - self.gather.music.playable = true; + self.gather.playable = true; }, self.minPlayInterval); } }