From 54887efd020aeaa9260c55859e68161ddd23b116 Mon Sep 17 00:00:00 2001 From: yrriban Date: Mon, 19 Jan 2026 13:02:30 -0500 Subject: [PATCH 1/2] Minor fix for loading map names from config. --- doomcc/text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doomcc/text.py b/doomcc/text.py index b8ee90a..421f37d 100644 --- a/doomcc/text.py +++ b/doomcc/text.py @@ -86,7 +86,7 @@ class Text(doomcc.doom_base.WadMap): map_names = self._config.get("map_names") if map_names is not None: text = map_names.get(f"map{mapnum}") - if text != "": + if text is not None: return text return input("Map Name? ") From 2809f001910fa26fd63b97c8712b0493cd238c4c Mon Sep 17 00:00:00 2001 From: yrriban Date: Mon, 19 Jan 2026 13:03:52 -0500 Subject: [PATCH 2/2] Minor tweak to license specification. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d860b22..520742e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "Doom Command Center" authors = [ {name = "yrriban",email = "yrriban@gmail.com"} ] -license = {text = "MIT"} +license = "MIT" readme = "README.md" requires-python = ">=3.12" dependencies = [