diff --git a/lib/OSRIC/Character.pm b/lib/OSRIC/Character.pm index 14d65d2..a6890ad 100644 --- a/lib/OSRIC/Character.pm +++ b/lib/OSRIC/Character.pm @@ -134,11 +134,9 @@ sub set_race # Increase the stats based on any racial stat boosts: my $stats_boosts = "OSRIC::Race::$self->{personal}->{race}"->stats_boosts; - print "Stats:\n"; for my $stat(keys %{$self->{stats}}) { $self->{stats}->{$stat} += $stats_boosts->{$stat}; - print "\t$stat = $self->{stats}->{$stat}\n"; } }