diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-07-18 12:44:42 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-07-18 12:44:42 -0700 |
commit | 9884b936ebf22a143206f0bb86260345fdc4faef (patch) | |
tree | e5d4c65f315d0e763c83d7484208f95262559183 /client | |
parent | 5949e1c21c1db7f514f27c142c19383d3f86654d (diff) | |
download | tools-9884b936ebf22a143206f0bb86260345fdc4faef.tar.gz tools-9884b936ebf22a143206f0bb86260345fdc4faef.tar.bz2 tools-9884b936ebf22a143206f0bb86260345fdc4faef.tar.xz tools-9884b936ebf22a143206f0bb86260345fdc4faef.zip |
Adjust update generator for split xmls (yay globs)
Diffstat (limited to 'client')
-rwxr-xr-x | client/make-updates | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/client/make-updates b/client/make-updates index 0154c47..29cec85 100755 --- a/client/make-updates +++ b/client/make-updates @@ -14,7 +14,7 @@ output=~/www/updates function apply_function() { - $1 misc-xml charcreation.xml ea-skills.xml effects.xml emotes.xml hair.xml paths.xml skills.xml status-effects.xml units.xml equipmentwindow.xml features.xml weapons.xml + $1 misc *.* COPYING rules/ $1 emotes graphics/emotes/ $1 images graphics/images/ $1 items graphics/items/ @@ -23,11 +23,10 @@ function apply_function() $1 skills graphics/skills/ $1 sprites graphics/sprites/ $1 tiles graphics/tiles/ - $1 item-xml items.xml - $1 map-xml maps.xml + $1 items items/ $1 maps maps/ - $1 mob-xml monsters.xml - $1 npc-xml npcs.xml + $1 mob monsters/ + $1 npc npcs/ $1 sfx sfx/ $1 tsx tilesets/ } |