From 713ecd950e247760eb870720f8c7507657e5fb7f Mon Sep 17 00:00:00 2001 From: yrriban Date: Fri, 13 Mar 2026 01:55:28 -0400 Subject: [PATCH] Temporarily include a map 0. Eventually, we should read MAPINFO/UMAPINFO for this info. --- doomcc/concat.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doomcc/concat.py b/doomcc/concat.py index 03a106b..44a1ac0 100644 --- a/doomcc/concat.py +++ b/doomcc/concat.py @@ -48,8 +48,9 @@ class Concat(doomcc.doom_base.Wad): # Presumably fixable, but it's easier to just make one graph per video # and mux everything together at the end. # TODO: Support UDoom in literally any way. + # TODO: Read UMAPINFO if it's available. d2maps = ( - [str(x).zfill(2) for x in range(1, 16)] + [str(x).zfill(2) for x in range(0, 16)] + ["31", "32"] + [str(x) for x in range(16, 31)] )