Skip to content

Commit

Permalink
Eliminación del texto BETA en ventanas herramienta lanzador Python
Browse files Browse the repository at this point in the history
  • Loading branch information
ngdplnk committed Sep 3, 2023
1 parent 10586fe commit 95c1485
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/launcher/launcher_eng.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ def limpiar_consola():

#CONSOLE TITLE CHANGE
if sys.platform.startswith('win32'):#WINDOWS
ctypes.windll.kernel32.SetConsoleTitleW("BETA Server Launcher for Minecraft")
ctypes.windll.kernel32.SetConsoleTitleW("Server Launcher for Minecraft")
elif sys.platform.startswith('linux') or sys.platform.startswith('darwin'):#LINUX OR MACOS
sys.stdout.write(f"\x1b]2;BETA Server Launcher for Minecraft\x07")
sys.stdout.write(f"\x1b]2;Server Launcher for Minecraft\x07")

#RAM START
def ram():
Expand Down
4 changes: 2 additions & 2 deletions python/launcher/launcher_esp.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ def limpiar_consola():

#CAMBIO NOMBRE VENTANA
if sys.platform.startswith('win32'):#WINDOWS
ctypes.windll.kernel32.SetConsoleTitleW("BETA Lanzador de Servidores para Minecraft")
ctypes.windll.kernel32.SetConsoleTitleW("Lanzador de Servidores para Minecraft")
elif sys.platform.startswith('linux') or sys.platform.startswith('darwin'):#LINUX O MACOS
sys.stdout.write(f"\x1b]2;BETA Lanzador de Servidores para Minecraft\x07")
sys.stdout.write(f"\x1b]2;Lanzador de Servidores para Minecraft\x07")

#BLOQUE RAM INICIO
def ram():
Expand Down

0 comments on commit 95c1485

Please sign in to comment.