summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-05-26 10:39:06 -0400
committerJesse Luehrs <doy@tozt.net>2014-05-26 10:39:06 -0400
commit388a93bde8eb0b989859c9201380cdd9d4f93e44 (patch)
tree20436262f43e4966ca15f1b063b73866e652d299 /lib
parente27bf43679a0b49a060ed8084f1f09722fdc08a3 (diff)
downloadgames-smtnocturne-demons-388a93bde8eb0b989859c9201380cdd9d4f93e44.tar.gz
games-smtnocturne-demons-388a93bde8eb0b989859c9201380cdd9d4f93e44.zip
don't filter targets by level
they aren't something we actually end up fusing, so it doesn't matter what their level is
Diffstat (limited to 'lib')
-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 30909ee..8241795 100644
--- a/lib/Games/SMTNocturne/Demons.pm
+++ b/lib/Games/SMTNocturne/Demons.pm
@@ -112,7 +112,7 @@ sub fusions_for {
$special->{$key} = [
grep { $_->level <= $options->{max_level} }
@{ $special->{$key} }
- ] if defined $options->{max_level};
+ ] if $key ne 'target' && defined $options->{max_level};
}
if ($special->{demon3}) {