bit more logging
This commit is contained in:
parent
0150a5ca33
commit
080d0853eb
|
@ -93,7 +93,7 @@ async function run() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function new_game() {
|
function new_game() {
|
||||||
load_default_game()
|
console.debug(load_default_game());
|
||||||
textareaGameDataInput.value = output();
|
textareaGameDataInput.value = output();
|
||||||
checkGameData();
|
checkGameData();
|
||||||
// we don't need to look at the default game data, so skip ahead to the image page
|
// we don't need to look at the default game data, so skip ahead to the image page
|
||||||
|
@ -121,7 +121,8 @@ async function run() {
|
||||||
});
|
});
|
||||||
|
|
||||||
function setPaletteDropdown() {
|
function setPaletteDropdown() {
|
||||||
let palettes = JSON.parse(get_palettes());
|
const palettes = JSON.parse(get_palettes());
|
||||||
|
console.debug(palettes);
|
||||||
|
|
||||||
selectPalette.innerHTML = "";
|
selectPalette.innerHTML = "";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue