forked from MarseyWorld/MarseyWorld
12 lines
357 B
JavaScript
12 lines
357 B
JavaScript
const dt = new Date();
|
|
let death_counter = parseInt(dt.getSeconds() + (60 * dt.getMinutes()) + (60 * 60 * dt.getHours()) * 1.93);
|
|
|
|
function update_death_counter() {
|
|
death_counter += 1
|
|
for (const el of document.getElementsByClassName('deaths-today'))
|
|
el.innerHTML = commas(death_counter)
|
|
}
|
|
|
|
update_death_counter()
|
|
setInterval(update_death_counter, 518);
|