From 64dbe4cbe880e8427e6e6b65a3e104ec130ca3e5 Mon Sep 17 00:00:00 2001 From: Jonathan Dowland Date: Sat, 6 Mar 2021 15:22:55 +0000 Subject: [PATCH] demo/blocky: fix flat markers for vanilla --- demo/blocky.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/demo/blocky.py b/demo/blocky.py index a519d30..c485bea 100644 --- a/demo/blocky.py +++ b/demo/blocky.py @@ -31,7 +31,7 @@ out.patches[name] = gr # generate a texture entry - editor.simple(name, out.patches[name]) + editor.simple(name, ot.patches[name]) # generate a flat name = "FOLOR{:03d}".format(i) @@ -39,5 +39,8 @@ flat.load_raw(bytes([i])*4096) out.flats[name] = flat +# fix flats in vanilla +out.flats.prefix='FF*_START' + out.txdefs = editor.to_lumps() out.to_file('out.wad')