In the Ask Again events in court_events.txt (73203, 73213, 73223, 73233 and 73243), where the courtier asks a second time for a council position, the trait test in the trigger checks the current councilor's stat against the liege's rather than the applicant's. The below code snippet is from 73203 but is typical of all five:
The highlighted portion should be ROOT, not PREV.
Code:
trigger = {
has_character_flag = asked_for_job
independent = no
NOT = { has_job_title = job_marshal }
liege = {
job_marshal = {
NOT = { martial = [COLOR="#FF0000"]prev[/COLOR] }
same_liege = ROOT
NOT = {
ROOT = {
is_liege_of = PREV
}
}
}
}
}
Upvote
0