Index: veekun/trunk/script/create_downloads.pl
===================================================================
--- veekun/trunk/script/create_downloads.pl (revision 250)
+++ veekun/trunk/script/create_downloads.pl (revision 367)
@@ -104,4 +104,5 @@
 tarball berries => 'root/dex-images/items/big', '*-berry.png';
 
+tarball cries => 'root/files/cries', '*.mp3';
 
 # functions ahoy
@@ -147,5 +148,10 @@
 sub tarball {
     my ($outfile, $path, @files) = @_;
-    my $outpath = File::Spec->rel2abs("$basepath/root/files/sprites/$outfile.tgz");
+    my $subfolder = 'sprites';
+    if ($outfile eq 'cries') {
+        # Hack
+        $subfolder = 'cries';
+    }
+    my $outpath = File::Spec->rel2abs("$basepath/root/files/$subfolder/$outfile.tgz");
 
     if (-e $outpath) {
