Skip to content

Commit 64dbe4c

Browse files
committed
demo/blocky: fix flat markers for vanilla
1 parent ac87992 commit 64dbe4c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

demo/blocky.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,16 @@
3131
out.patches[name] = gr
3232

3333
# generate a texture entry
34-
editor.simple(name, out.patches[name])
34+
editor.simple(name, ot.patches[name])
3535

3636
# generate a flat
3737
name = "FOLOR{:03d}".format(i)
3838
flat = Flat()
3939
flat.load_raw(bytes([i])*4096)
4040
out.flats[name] = flat
4141

42+
# fix flats in vanilla
43+
out.flats.prefix='FF*_START'
44+
4245
out.txdefs = editor.to_lumps()
4346
out.to_file('out.wad')

0 commit comments

Comments
 (0)