removed a part that *should* not be needed anymore

if any new untranslated strings appear, please tell me
This commit is contained in:
Nils Kneuper 2007-08-03 14:03:21 +00:00
parent ba88d9884d
commit 5493cd1539

View file

@ -93,14 +93,15 @@ foreach my $file (@ARGV) {
# single-line non-quoted string
die "nested string in $file" if defined $str;
# magic handling of weapon descriptions
push @{$messages{raw2postring($2)}}, "$file:$."
if $readingattack and
($1 eq 'name' or $1 eq 'type' or $1 eq 'special');
# magic handling of unit abilities
push @{$messages{raw2postring($2)}}, "$file:$."
if $1 eq 'ability';
### probably not needed ###
# # magic handling of weapon descriptions
# push @{$messages{raw2postring($2)}}, "$file:$."
# if $readingattack and
# ($1 eq 'name' or $1 eq 'type' or $1 eq 'special');
#
# # magic handling of unit abilities
# push @{$messages{raw2postring($2)}}, "$file:$."
# if $1 eq 'ability';
} elsif (m,\[attack\],) {
$readingattack = 1;