mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-05-09 18:31:43 +00:00
fixed merge conflict
This commit is contained in:
parent
9b412540d1
commit
e729e13cdf
2 changed files with 8 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ PERM_BAN_DESC = "/permban [NAME|ID] - Banea al jugador de todas tus partidas."
|
|||
MOD_DESC = "/moderator [NAME|ID] - Permite a un jugador usar comandos como /kick, /ban o /permban de cualquier partida que crees."
|
||||
NAMETAGS_DESC = "/nametags [show-tag|show-health] - Cambia si ves tu propia etiqueta y si ves la salud"
|
||||
UNRECOGNIZED = "Comando desconocido."
|
||||
MOD_GRANTED = "\\#fff982\\Ahora eres un moderador."
|
||||
MOD_GRANTED = "\\#fff982\\Ahora eres moderador."
|
||||
ALL_COMMANDS = "Todos los comandos"
|
||||
TAB_COMPLETE_INFO = "Pulsa TAB para autocompletar comandos, usa Shift+TAB para retroceder"
|
||||
|
||||
|
|
|
|||
|
|
@ -211,7 +211,13 @@ bool djui_interactable_on_key_down(int scancode) {
|
|||
}
|
||||
}
|
||||
|
||||
if (gDjuiChatBox != NULL) {
|
||||
if (scancode == SCANCODE_ESCAPE && djui_panel_is_active()) {
|
||||
// pressed escape button on keyboard
|
||||
djui_panel_back();
|
||||
return true;
|
||||
}
|
||||
|
||||
if (gDjuiChatBox != NULL && !gDjuiChatBoxFocus) {
|
||||
bool pressChat = false;
|
||||
bool pressChatCommand = false;
|
||||
for (int i = 0; i < MAX_BINDS; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue