Skip to content

Commit ca2c4c0

Browse files
committed
2 parents 140fa8e + 4232cf4 commit ca2c4c0

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

LTS.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1416,11 +1416,13 @@ def main():
14161416
clear_screen()
14171417
prints("欢迎使用 TouchFish 聊天室!", "yellow")
14181418
prints("当前程序版本:{}".format(VERSION), "yellow")
1419-
prints("15 秒后将根据配置文件 config.json 中的配置自动启动。", "yellow")
1420-
prints("按下 Ctrl + C 以切换到手动启动模式。", "yellow")
1419+
prints("5 秒后将会自动按上次的配置启动。", "yellow")
1420+
prints("按下 Ctrl + C 以指定启动配置。", "yellow")
14211421
auto_start = True
14221422
try:
1423-
time.sleep(15)
1423+
for i in range(5, 0, -1):
1424+
prints("剩余 "+str(i)+" 秒...", "yellow")
1425+
time.sleep(1)
14241426
except KeyboardInterrupt:
14251427
auto_start = False
14261428
except:

0 commit comments

Comments
 (0)