Skip to content

Commit

Permalink
Updated packres.py with new game plugin folder names
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jan 5, 2013
1 parent 03551ba commit 0a13403
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions doomsday/build/scripts/packres.py
Expand Up @@ -75,31 +75,31 @@ def process_dir(path, dest_path):
# libdoom.pk3
p = Pack()
p.add_files(
[ ('plugins/jdoom/defs', 'defs/jdoom'),
('plugins/jdoom/data/conhelp.txt', 'data/jdoom/conhelp.txt'),
('plugins/jdoom/data/lumps', '#.basedata') ] )
[ ('plugins/doom/defs', 'defs/jdoom'),
('plugins/doom/data/conhelp.txt', 'data/jdoom/conhelp.txt'),
('plugins/doom/data/lumps', '#.basedata') ] )
p.create('libdoom.pk3')

# libheretic.pk3
p = Pack()
p.add_files(
[ ('plugins/jheretic/defs', 'defs/jheretic'),
('plugins/jheretic/data/conhelp.txt', 'data/jheretic/conhelp.txt'),
('plugins/jheretic/data/lumps', '#.basedata') ] )
[ ('plugins/heretic/defs', 'defs/jheretic'),
('plugins/heretic/data/conhelp.txt', 'data/jheretic/conhelp.txt'),
('plugins/heretic/data/lumps', '#.basedata') ] )
p.create('libheretic.pk3')

# libhexen.pk3
p = Pack()
p.add_files(
[ ('plugins/jhexen/defs', 'defs/jhexen'),
('plugins/jhexen/data/conhelp.txt', 'data/jhexen/conhelp.txt'),
('plugins/jhexen/data/lumps', '#.basedata') ] )
[ ('plugins/hexen/defs', 'defs/jhexen'),
('plugins/hexen/data/conhelp.txt', 'data/jhexen/conhelp.txt'),
('plugins/hexen/data/lumps', '#.basedata') ] )
p.create('libhexen.pk3')

# libdoom64.pk3
p = Pack()
p.add_files(
[ ('plugins/jdoom64/defs', 'defs/jdoom64'),
('plugins/jdoom64/data/conhelp.txt', 'data/jdoom64/conhelp.txt'),
('plugins/jdoom64/data/lumps', '#.basedata') ] )
[ ('plugins/doom64/defs', 'defs/jdoom64'),
('plugins/doom64/data/conhelp.txt', 'data/jdoom64/conhelp.txt'),
('plugins/doom64/data/lumps', '#.basedata') ] )
p.create('libdoom64.pk3')

0 comments on commit 0a13403

Please sign in to comment.