diff options
| author | Simon Tatham <anakin@pobox.com> | 2015-01-13 19:54:46 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2015-01-13 19:54:46 +0000 |
| commit | e3a8e64812f2fa783dc5644f04f267a291bc6098 (patch) | |
| tree | 88348f5572fe334404b1205e46fba48e7b8f42b9 /desktop.pl | |
| parent | f39681ab41d60418c4a25270635a88d9cd0a685f (diff) | |
| download | puzzles-e3a8e64812f2fa783dc5644f04f267a291bc6098.zip puzzles-e3a8e64812f2fa783dc5644f04f267a291bc6098.tar.gz puzzles-e3a8e64812f2fa783dc5644f04f267a291bc6098.tar.bz2 puzzles-e3a8e64812f2fa783dc5644f04f267a291bc6098.tar.xz | |
Put the game summaries from the website into gamedesc.txt.
More sensible to bring all the pieces of per-puzzle descriptive text
together into one place, so they can be easily reused everywhere
they're needed.
Diffstat (limited to 'desktop.pl')
| -rwxr-xr-x | desktop.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ open my $desc, "<", "gamedesc.txt" while (<$desc>) { chomp; - my ($id, $win, $displayname, $description) = split /:/, $_; + my ($id, $win, $displayname, $description, $summary) = split /:/, $_; open my $desktop, ">", "$outdir/$id.desktop" or die "$outdir/$id.desktop: open: $!\n"; |