mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Fix to costs generated by gen-card.pl (example: 2/W)
This commit is contained in:
parent
39e9a39eb5
commit
ffa0945e51
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ sub toCamelCase {
|
||||||
|
|
||||||
sub fixCost {
|
sub fixCost {
|
||||||
my $string = $_[0];
|
my $string = $_[0];
|
||||||
$string =~ s/{([BUGRW])([BUGRW])}/{$1\/$2}/g;
|
$string =~ s/{([2BUGRW])([2BUGRW])}/{$1\/$2}/g;
|
||||||
$string;
|
$string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue