Removed unnessecary debug printing

This commit is contained in:
Alex Kerr 2015-02-06 13:23:03 +00:00
parent be6f42d6c4
commit 01ae6231a6

View File

@ -134,11 +134,9 @@ sub set_race
# Increase the stats based on any racial stat boosts: # Increase the stats based on any racial stat boosts:
my $stats_boosts = "OSRIC::Race::$self->{personal}->{race}"->stats_boosts; my $stats_boosts = "OSRIC::Race::$self->{personal}->{race}"->stats_boosts;
print "Stats:\n";
for my $stat(keys %{$self->{stats}}) for my $stat(keys %{$self->{stats}})
{ {
$self->{stats}->{$stat} += $stats_boosts->{$stat}; $self->{stats}->{$stat} += $stats_boosts->{$stat};
print "\t$stat = $self->{stats}->{$stat}\n";
} }
} }