[ECL] Implement Selfless Safewright (#14227)

* Update gen-card.pl to take all command line args as a space-seperated card name to remove need for quoting or escaping

* [ECL] Implement Selfless Safewright
This commit is contained in:
Muz 2026-01-10 16:14:14 -06:00 committed by GitHub
parent 44a9c2722b
commit ed3305cf59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 120 additions and 1 deletions

View file

@ -90,7 +90,7 @@ $raritiesConversion{'Special'} = 'SPECIAL';
$raritiesConversion{'Bonus'} = 'BONUS';
# Get card name
my $cardName = $ARGV[0];
my $cardName = join ' ', @ARGV;
if (!$cardName) {
print 'Enter a card name: ';
$cardName = <STDIN>;