Here, is the output that I got from debugging. (Count was used to show the number of elements in the array, so that no undefined elements are sneaking in).
Dumper $VAR1 = [
'EEBL::League::Prospect',
'EEBL',
'EEBL::Config'
];
Count: 3
Dumper $VAR1 = [
'EEBL::Team',
'EEBL',
'EEBL::Config'
];
Count: 3
Can't call method "isa" on an undefined value at /usr/local/share/perl
+/5.8.8/Cla
+ ss/Std.pm line 228.
Dumper $VAR1 = [
'EEBL::Team',
'EEBL',
'EEBL::Config'
];
Count: 3
(in cleanup) Can't call method "isa" on an undefined value at
+/usr/local
+ /share/perl/5.8.8/Class/Std.pm line 228.
Dumper $VAR1 = [
'EEBL::League::Schedule'
];
Count: 1
I have used Class::Std a lot, and this is the first time I came across this sort of error. I think it just might be a interpreter error because this program was working on another box. I was hoping someone would have any idea of how to work around it without me having to reinstall/update Perl on the machine.