Skip to content

Commit

Permalink
updated code_esp.py fixing language incosistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ngdplnk committed Nov 2, 2023
1 parent 0e93757 commit 5651fb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions newcode/launcher/code_esp.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,20 +503,20 @@ def about():
if selec == 1:
url = colored("https://github.com/NGDPLNk/SSTools4MC","cyan")
limpiar_consola()
input(f"Lanzador de Servidores para Minecraft\n-------------------------------------\n\nSe abrirá el repositorio en tu navegador.\n\n{url}\n\nPress ENTER to continue.")
input(f"Lanzador de Servidores para Minecraft\n-------------------------------------\n\nSe abrirá el repositorio en tu navegador.\n\n{url}\n\nPresiona ENTER para continuar.")
url = "https://github.com/NGDPLNk/SSTools4MC"
webbrowser.open(url)
elif selec == 2:
url = colored("https://github.com/NGDPLNk/SSTools4MC/blob/main/LICENSE","cyan")
limpiar_consola()
input(f"Lanzador de Servidores para Minecraft\n-------------------------------------\n\nSe abrirá la licencia de la herramienta en tu navegador.\n\n{url}\n\nPress ENTER to continue.")
input(f"Lanzador de Servidores para Minecraft\n-------------------------------------\n\nSe abrirá la licencia de la herramienta en tu navegador.\n\n{url}\n\nPresiona ENTER para continuar.")
url = "https://github.com/NGDPLNk/SSTools4MC/blob/main/LICENSE"
webbrowser.open(url)
elif selec == 3:
url = colored("https://minecraft.tools/es/motd.php","cyan")
url2 = colored("https://www.digminecraft.com/lists/color_list_pc.php","cyan")
limpiar_consola()
input(f"Lanzador de Servidores para Minecraft\n-------------------------------------\n\nSe abrirán 2 páginas para ver el formato de texto en los MOTD, en tu navegador.\n\n{url}\n\n{url2}\n\nPress ENTER to continue.")
input(f"Lanzador de Servidores para Minecraft\n-------------------------------------\n\nSe abrirán 2 páginas para ver el formato de texto en los MOTD, en tu navegador.\n\n{url}\n\n{url2}\n\nPresiona ENTER para continuar.")
url = "https://minecraft.tools/es/motd.php"
webbrowser.open(url)
url2 = "https://www.digminecraft.com/lists/color_list_pc.php"
Expand Down
File renamed without changes.

0 comments on commit 5651fb3

Please sign in to comment.