summaryrefslogtreecommitdiffstats
path: root/lib/Games/SMTNocturne/Demons
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-05-25 02:23:33 -0400
committerJesse Luehrs <doy@tozt.net>2014-05-25 02:23:33 -0400
commit56927ba9e44de61a06e2c7ec2a48227a0d75a162 (patch)
tree01a99c5a9d98f7a8204534bc5f50170e36d43479 /lib/Games/SMTNocturne/Demons
parent3812e89fbaec8075af2d8185d6ef0c32d13b3383 (diff)
downloadgames-smtnocturne-demons-56927ba9e44de61a06e2c7ec2a48227a0d75a162.tar.gz
games-smtnocturne-demons-56927ba9e44de61a06e2c7ec2a48227a0d75a162.zip
there's only a single set of types
Diffstat (limited to 'lib/Games/SMTNocturne/Demons')
-rw-r--r--lib/Games/SMTNocturne/Demons/FusionChart.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Games/SMTNocturne/Demons/FusionChart.pm b/lib/Games/SMTNocturne/Demons/FusionChart.pm
index f60a40c..42e5f77 100644
--- a/lib/Games/SMTNocturne/Demons/FusionChart.pm
+++ b/lib/Games/SMTNocturne/Demons/FusionChart.pm
@@ -10,7 +10,7 @@ sub fuse {
my ($type1, $type2) = @_;
die "unknown demon type $type1" unless $TYPES{$type1};
- die "unknown demon type $type2" unless $TYPES{$type1}{$type2};
+ die "unknown demon type $type2" unless $TYPES{$type2};
return $TYPES{$type1}{$type2};
}