In illness_events.txt I see stuff like this (abbreviated)
Does type = court really only work on the ruler? I've written some events that use type = court without the ruler_csc context selector, and they seem to work correctly even on non-rulers. I haven't tested exhaustively though. If it behaves correctly for both rulers and non-rulers, then the code above is kinda redundant. Am I missing something?
Code:
condition = { type = or
condition = { type = and
condition = { type = ruler }
condition = { type = court value = 20 }
}
condition = { type = and
condition = { type = not value = { type = ruler } }
condition = { type = ruler_csc
condition = { type = court value = 20 }
}
}
}
Does type = court really only work on the ruler? I've written some events that use type = court without the ruler_csc context selector, and they seem to work correctly even on non-rulers. I haven't tested exhaustively though. If it behaves correctly for both rulers and non-rulers, then the code above is kinda redundant. Am I missing something?