📦 Game Update 13964

This commit is contained in:
a2x
2023-10-21 09:43:23 +10:00
parent 74a0693f53
commit 631668429c
78 changed files with 1000 additions and 1051 deletions

View File

@@ -91,8 +91,14 @@ fn write_banner_to_file(file: &mut File, file_ext: &str) -> Result<()> {
let banner = match file_ext {
"json" => None,
"py" => Some(format!("'''\n{}\n{}\n'''\n\n", REPO_URL, now_utc)),
_ => Some(format!("/*\n * {}\n * {}\n */\n\n", REPO_URL, now_utc)),
"py" => Some(format!(
"'''\nCreated using {}\n{}\n'''\n\n",
REPO_URL, now_utc
)),
_ => Some(format!(
"/*\n * Created using {}\n * {}\n */\n\n",
REPO_URL, now_utc
)),
};
if let Some(banner) = banner {