summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-05-26 02:30:21 -0400
committerJesse Luehrs <doy@tozt.net>2014-05-26 02:30:21 -0400
commitb76a5d384aa826c93ebb0a6e775b7351b22508e4 (patch)
tree2b048efe6dd9fb2b4de19c589f0edbe19f92578e
parent2b886c3be102f28d3908ebc42f1b1cc2a27f58fb (diff)
downloadgames-smtnocturne-demons-b76a5d384aa826c93ebb0a6e775b7351b22508e4.tar.gz
games-smtnocturne-demons-b76a5d384aa826c93ebb0a6e775b7351b22508e4.zip
need to pass options through here too
for the boss list, for instance
-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 c4b5703..6b3c543 100644
--- a/lib/Games/SMTNocturne/Demons.pm
+++ b/lib/Games/SMTNocturne/Demons.pm
@@ -84,7 +84,7 @@ sub fusions_for {
next if defined $options->{max_level}
&& $options->{max_level} < $demon2->level;
push @fusions, [ $demon1, $demon2 ]
- if (fuse($demon1, $demon2) || '') eq $demon;
+ if (fuse($demon1, $demon2, $options) || '') eq $demon;
}
}
}