Add 18th background pattern

This commit is contained in:
2023-09-26 22:47:12 +02:00
parent 4ad9bf32b4
commit 8c94c04b22
29 changed files with 3 additions and 4 deletions

View File

@@ -300,7 +300,7 @@ func BackgroundTiles() template.URL {
} else if month == time.December && (day == 25 || day == 26 || day == 27) {
file = "checker_christmas"
} else {
file = fmt.Sprintf("checker%d", now.UnixNano()%18)
file = fmt.Sprintf("checker%d", now.UnixNano()%19)
}
return template.URL("/res/img/background_patterns/" + file + "_transparent.png")