Explorar el Código

Trying III > 60 mins and IV > 120 mins

Foppe Hemminga hace 6 años
padre
commit
eb8a0d8422
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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