diff options
author | ana <ana@ana.st> | 2021-08-08 19:35:15 +0200 |
---|---|---|
committer | ana <ana@ana.st> | 2021-08-08 19:35:15 +0200 |
commit | 6d20a145920581eeffe08351311315ed1da56ba8 (patch) | |
tree | 0167637f01055e5a384dfadcfbfa2015649b5825 /src | |
parent | f8d88af22684b173362b061e1cec3ed6dd5f1d3a (diff) | |
download | eureka-marks-6d20a145920581eeffe08351311315ed1da56ba8.tar.gz |
fix: fix unruly name
Diffstat (limited to 'src')
-rw-r--r-- | src/App.svelte | 2 | ||||
-rw-r--r-- | src/pyros.bestiary.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/App.svelte b/src/App.svelte index 1a7aa7f..171cf33 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -29,7 +29,7 @@ }, 10000); // 10 seconds $: currentEzTime = formatUtc(date); onMount(() => { - document.getElementById("level").value = $level; // this is fucked up but it works + document.getElementById("level").value = $level || 0; // this is fucked up but it works }); function newForecasts() { diff --git a/src/pyros.bestiary.js b/src/pyros.bestiary.js index f3b2e18..6b16906 100644 --- a/src/pyros.bestiary.js +++ b/src/pyros.bestiary.js @@ -113,7 +113,7 @@ export default [ }, { level: 40, - name: "Mega", + name: "Mega-gris", type: 1, elem: "Earth", conditions: { day: [], night: [5] }, |