summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcrawl-ref/source/util/gen-apt.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/util/gen-apt.pl b/crawl-ref/source/util/gen-apt.pl
index 5a42ad1264..fe7477aed9 100755
--- a/crawl-ref/source/util/gen-apt.pl
+++ b/crawl-ref/source/util/gen-apt.pl
@@ -92,7 +92,8 @@ sub find_skill
sub split_species
{
my $sp = shift;
- return ($2, $1) if ($sp =~ /^(.*) (.*)$/);
+ # Don't split Vine Stalker, because it's not a kind of Stalker.
+ return ($2, $1) if ($sp =~ /^(?!Vine Stalker)(.*) (.*)$/);
return ($sp, $sp);
}