View Single Post
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old February 25th, 2015, 09:34 AM
Quote:
Originally Posted by RavenX View Post
Sendric,

The Celestial Sorcerer Lore feat has a prereq of two other celestial heritage feats on it. There is a bug in the Expr-req checking the prerequisite, it has the prereq looking for #hasfeat[] + ... >= 2 for the 2 other heritage feat requirement. Reporting this as a potential bug because if additional feats of this type are added to the data they won't qualify to fulfill the prereq on the feat. My suggestion would be to use a custom tag for the feats so that the prereq can just do a tagcount instead and you'll catch all the heritage feats in one go that qualify to fulfill the requirement.
Thanks for the report. What about using this script instead:

Code:
var test as number
if (#hasfeat[fCelSorHer] <> 0) then
 test -= 1
endif

test += tagcount[HasFeat.fCelSor?]

validif (test >= 2)
Sendric is offline   #326 Reply With Quote