feat: Add "My Vibe" button to menu and enhance interactions.

This commit is contained in:
Lemon4ksan
2025-01-27 23:32:08 +03:00
parent c49ff949cf
commit c353de429f
8 changed files with 332 additions and 153 deletions

View File

@@ -106,7 +106,8 @@ class BaseGuildsDatabase:
shuffle=False,
repeat=False,
votes={},
vibing=False
vibing=False,
current_viber_id=None
))
def update(self, gid: int, data: Guild) -> None:
@@ -152,7 +153,8 @@ class BaseGuildsDatabase:
shuffle=False,
repeat=False,
votes={},
vibing=False
vibing=False,
current_viber_id=None
)
for field, default_value in fields.items():
if field not in existing_fields: