From 01ae6231a652d444018b8d4056dc2608ec07ca48 Mon Sep 17 00:00:00 2001 From: Alex Kerr Date: Fri, 6 Feb 2015 13:23:03 +0000 Subject: [PATCH] Removed unnessecary debug printing --- lib/OSRIC/Character.pm | 2 -- 1 file changed, 2 deletions(-) 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"; } }