|
|
@@ -348,6 +348,15 @@ def add_auto_task(isMaxCollect, isJina, isSimple = False, isAddStrengh = False,
|
|
|
update_rungame_type(0)
|
|
|
send_status(f'巨熊行动:在60min内,切换到无尽模式')
|
|
|
|
|
|
+ now = datetime.now()
|
|
|
+ target_time = datetime.combine(now.date(), dt.time(20, 00))
|
|
|
+ end_time = datetime.combine(now.date(), dt.time(24, 00))
|
|
|
+
|
|
|
+ # 判断当前时间是否超过20:30
|
|
|
+ if now > target_time and now < end_time:
|
|
|
+ update_rungame_type(0)
|
|
|
+
|
|
|
+
|
|
|
print("add special activity")
|
|
|
curNum = GlobalState.g_cureNum
|
|
|
if get_rungame_type() == 1:
|