Fixed useless void sort
This commit is contained in:
parent
19be5e6e6a
commit
6a1944ad6a
@ -82,8 +82,8 @@ sub generate_gold
|
|||||||
my $self = shift;
|
my $self = shift;
|
||||||
|
|
||||||
# Get the classes and sort by the highest starting gold (see page 28):
|
# Get the classes and sort by the highest starting gold (see page 28):
|
||||||
my @classes = @{$self->{personal}->{classes}};
|
my @sorted = sort { $a->max_starting_gold <=> $b->max_starting_gold }
|
||||||
sort { $a->max_starting_gold <=> $b->max_starting_gold } @classes;
|
@{$self->{personal}->{classes}};
|
||||||
|
|
||||||
# Generate the starting gold:
|
# Generate the starting gold:
|
||||||
$self->{wealth}->{coins} = $classes[0]->get_gold;
|
$self->{wealth}->{coins} = $classes[0]->get_gold;
|
||||||
|
Loading…
Reference in New Issue
Block a user