Commit ef5d8ea23a384d2b51ae21cf9515b5700383b7ca
1 parent
7d574472
Fix an update to the new generateRandboss not being copied to the old one
Showing
1 changed file
with
4 additions
and
0 deletions
@@ -2092,6 +2092,10 @@ function _M:applyRandomClass(b, data, instant) | @@ -2092,6 +2092,10 @@ function _M:applyRandomClass(b, data, instant) | ||
2092 | end | 2092 | end |
2093 | b[#b+1] = resolver | 2093 | b[#b+1] = resolver |
2094 | end | 2094 | end |
2095 | + elseif resolver.__resolver == "auto_equip_filters" then | ||
2096 | + if not data.forbid_equip then | ||
2097 | + b[#b+1] = resolver | ||
2098 | + end | ||
2095 | elseif resolver._allow_random_boss then -- explicitly allowed resolver | 2099 | elseif resolver._allow_random_boss then -- explicitly allowed resolver |
2096 | b[#b+1] = resolver | 2100 | b[#b+1] = resolver |
2097 | end | 2101 | end |
-
Please register or login to post a comment