--- deliantra/server/utils/cfutil.in 2007/08/20 22:09:04 1.57 +++ deliantra/server/utils/cfutil.in 2007/08/21 19:44:57 1.58 @@ -427,8 +427,11 @@ }; } - for my $face ($o->{face} || (), @{$anim || []}) { - next if $face =~ /^facings\s/; + for ($o->{face} || (), @{$anim || []}) { + next if /^facings\s/; + + my $face = $_; + $face =~ s/\+\d+\+\d+$//; # remove tile offset coordinates my $info = $FACEINFO{$face} ||= { }; $info->{arc} = $o;