From 657ee2d2db5a75f5cc6c553f829d6b6b52a57563 Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Sat, 6 Sep 2025 17:06:32 -0400 Subject: [PATCH] some alt skins for said dancers --- libs/background.py | 2 +- libs/bg_objects/dancer.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)