mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-17 01:41:22 +01:00
v1.5.04 - smarter coa generation, coa download
This commit is contained in:
parent
32c4566aa7
commit
3aaddcf1a7
7 changed files with 294 additions and 88 deletions
|
|
@ -545,9 +545,7 @@ function unfog(id) {
|
|||
}
|
||||
|
||||
function getFileName(dataType) {
|
||||
const formatTime = (time) => {
|
||||
return (time < 10) ? "0" + time : time;
|
||||
};
|
||||
const formatTime = time => time < 10 ? "0" + time : time;
|
||||
const name = mapName.value;
|
||||
const type = dataType ? dataType + " " : "";
|
||||
const date = new Date();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue