diff --git a/libs/background.py b/libs/background.py index e8da24e..3ec3ffe 100644 --- a/libs/background.py +++ b/libs/background.py @@ -17,7 +17,7 @@ class Background: self.bg_fever = BGFever.create(self.tex_wrapper, random.randint(0, 3)) self.footer = Footer(self.tex_wrapper, random.randint(0, 2)) self.fever = Fever.create(self.tex_wrapper, random.randint(0, 3), bpm) - self.dancer = Dancer.create(self.tex_wrapper, 0, bpm) + self.dancer = Dancer.create(self.tex_wrapper, random.randint(0, 2), bpm) self.is_clear = False self.is_rainbow = False self.last_milestone = 0 diff --git a/libs/bg_objects/dancer.py b/libs/bg_objects/dancer.py index d7d9db2..b520053 100644 --- a/libs/bg_objects/dancer.py +++ b/libs/bg_objects/dancer.py @@ -7,7 +7,7 @@ class Dancer: @staticmethod def create(tex: TextureWrapper, index: int, bpm: float): - map = [DancerGroup0] + map = [DancerGroup0, DancerGroup0, DancerGroup0] selected_obj = map[index] return selected_obj(tex, index, bpm)