Skip to content

Commit 9e4cc65

Browse files
committed
Add MOTD to config and CLI banner.
1 parent 33b4e7c commit 9e4cc65

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

utils/config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
from . import console
55

6+
MOTD = "the sniper update"
67
VERSION = "3.2.0"
78
PRODUCTION = True
89
DEFAULT_CONFIG = {

utils/console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def print_banner():
4242
print(pystyle.Center.XCenter(banner))
4343

4444
print(f"{colorama.Style.NORMAL}{colorama.Fore.WHITE}")
45-
print(pystyle.Center.XCenter(f"epic gamer rewrite of ghost"))
45+
print(pystyle.Center.XCenter(config.MOTD))
4646
print()
4747
print(f"{colorama.Fore.BLUE}—————————————————————————————————————{copyright_}—————————————————————————————————————")
4848
print(f"{colorama.Style.RESET_ALL}")

0 commit comments

Comments
 (0)