moth

Monarch Of The Hill game server
git clone https://git.woozle.org/neale/moth.git

commit
7db4021
parent
259ad59
author
Neale Pickett
date
2024-04-17 17:31:17 -0600 MDT
Oops, revert intentional typo
2 files changed,  +6, -2
M CHANGELOG.md
+5, -1
 1@@ -4,8 +4,12 @@ All notable changes to this project will be documented in this file.
 2 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 3 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 4 
 5+## [v4.6.2] - 2024-04-17
 6+### Fixed
 7+- Fixed code to intentionally break config.json loading, used to test v4.6.1
 8+
 9 ## [v4.6.1] - 2024-04-17
10-### Changed
11+### Fixed
12 - Fixed bug with solved puzzle tracking when config.json cannot be loaded.
13 
14 ## [v4.6.0] - 2024-04-17
M theme/common.mjs
+1, -1
1@@ -69,7 +69,7 @@ async function Config() {
2     let obj = {}
3     try {
4         let resp = await fetch(
5-            new URL("configg.json", BaseURL), 
6+            new URL("config.json", BaseURL), 
7             {
8                 cache: "no-cache"
9             },