Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Build and Push GHCR
id: docker_build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
provenance: false
push: true
Expand Down
7 changes: 4 additions & 3 deletions bot/cogs/lib/enums/system_actions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from enum import Enum


class SystemActions(Enum):
# System actions
CREATE_VOICE_CHANNEL = 0
CREATE_STAGE_CHANNEL = 1
# System actions
CREATE_VOICE_CHANNEL = 0
CREATE_STAGE_CHANNEL = 1
7 changes: 4 additions & 3 deletions bot/cogs/lib/enums/user_channel_state.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from enum import Enum


class UserChannelState(Enum):
# System actions
JOIN = 0
LEAVE = 1
# System actions
JOIN = 0
LEAVE = 1
16 changes: 8 additions & 8 deletions bot/cogs/lib/models/default_prefixes.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

class DefaultPrefixes:
VALUE = [
".voice ",
"?voice ",
"!voice ",
".vcb ",
"?vcb ",
"!vcb "
]
VALUE = [
".voice ",
"?voice ",
"!voice ",
".vcb ",
"?vcb ",
"!vcb "
]
2 changes: 1 addition & 1 deletion languages/es-mx.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
"help_info_more_help": "Más ayuda",
"help_info_admin_title": "Comando de administración",
"help_no_command": "El comando `{{command}}` no se encuentra en la ayuda.",
"help_command_channel": "**Comandos basados ​​en canales**",
"help_command_channel": "**Comandos basados en canales**",
"help_command_name": "**Cambia el nombre de tu canal**\n\nDejar el nombre vacío generará un nombre aleatorio.",
"help_command_save": "**Guarda la configuración de tu canal**",
"help_command_enable_auto_game": "**Cambia automáticamente tu canal por el nombre del juego al que estás jugando**",
Expand Down
1 change: 0 additions & 1 deletion metrics/voicecreate.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,4 +242,3 @@ def fetch(self):
except Exception as ex:
self.log.error(0, f"{self._module}.{self._class}.{_method}", str(ex), traceback.format_exc())
self.errors.labels(source="exporter_db_close").set(1)

Loading