Skip to content

Commit

Permalink
BOSSES: update estimated aquaman respawn
Browse files Browse the repository at this point in the history
  • Loading branch information
mascaldotfr committed Jul 10, 2024
1 parent 49afa56 commit 5c78178
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions js/bosses.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {__api__base} from "./api_url.js"; // XXX AQUAMAN
const first_respawns = { "thorkul": 1715403300,
"evendim": 1715462390,
"daen": 1715156280,
"aquaman": 1717858800,
"aquaman": 1720499400,
"server": 1715162400 + 37 * 60 };
let next_respawns = { "evendim": [], "daen": [], "thorkul": [], "server": [] };
let previous_respawns = first_respawns;
Expand All @@ -37,7 +37,7 @@ function get_next_respawns(boss) {
if (boss == "server")
respawn_time = 168 * 3600; // 1 week
else if (boss == "aquaman")
respawn_time = 22.5 * 3600;
respawn_time = 7.5 * 3600;
else
respawn_time = 109 * 3600; // 109 hours
tried_respawn += respawn_time;
Expand All @@ -51,7 +51,7 @@ function get_next_respawns(boss) {
previous_respawns[boss]);
if (boss != "aquaman")
return;
for (let i of [...Array(22).keys()]) {
for (let i of [...Array(50).keys()]) {
let prevprevprev = new Date((previous_respawns["aquaman"] - respawn_time * i) * 1000);
console.log("[DEBUG]", "prevprevprev respawn: ", prevprevprev);
}
Expand Down
2 changes: 1 addition & 1 deletion js/menu.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5c78178

Please sign in to comment.