summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Games/SMTNocturne/Demons.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Games/SMTNocturne/Demons.pm b/lib/Games/SMTNocturne/Demons.pm
index 386ce0c..f24518c 100644
--- a/lib/Games/SMTNocturne/Demons.pm
+++ b/lib/Games/SMTNocturne/Demons.pm
@@ -54,7 +54,7 @@ sub fusions_for {
for my $demon1 (Games::SMTNocturne::Demons::Demon->from_type($type1)) {
for my $demon2 (Games::SMTNocturne::Demons::Demon->from_type($type2)) {
push @fusions, [ $demon1, $demon2 ]
- if fuse($demon1, $demon2) eq $demon;
+ if (fuse($demon1, $demon2) || '') eq $demon;
}
}
}