ソースを参照

Trying III > 60 mins and IV > 120 mins

Foppe Hemminga 6 年 前
コミット
eb8a0d8422
1 ファイル変更1 行追加1 行削除
  1. 1 1
      model.py

+ 1 - 1
model.py

@@ -148,7 +148,7 @@ def calculate_time_to_next_attack(this_player_id):
     if this_status_integer <= 2:
         seconds_till_level_iv += 60 * 60
     if this_status_integer <= 3:
-        seconds_till_level_iv += 210 * 60
+        seconds_till_level_iv += 120 * 60
     apocalypse_time = starting_time + seconds_till_level_iv
     time_now = arrow.utcnow().timestamp
     diff = apocalypse_time - time_now