It goes Owner Inherits from SuperAdmin Superadmin inherits from admin, SeniorAdmin Inherits from admin (that might be where its wrong) and then then admin inherits mod mod inharits from jrmod jrmod inherits from donator+ donator+ inherits from donator donator inherits from trusted and trusted inherits from user
Branching inheritance trees like yours require specific
can_target configurations to work---the
!% specifier is only built to follow a linear tree. Instead, you will have to manually specify all groups that should be target-able by the group in a comma-separated list, prefixed with
#.
Example:Say you have 4 groups. You want group11 to only be able to target groups below it.
inheritance tree | group11 - (top) | - group2 - group3 group01 - |
can_target list for group11 | #group2, #group3 |