(PlayerCharacter pc, Skill sk)
| 133 | } |
| 134 | |
| 135 | @Override |
| 136 | public boolean allow(PlayerCharacter pc, Skill sk) |
| 137 | { |
| 138 | Collection<PCClass> classlist = pc.getClassSet(); |
| 139 | for (PCClass cl : classlist) |
| 140 | { |
| 141 | if (pc.isClassSkill(cl, sk)) |
| 142 | { |
| 143 | return true; |
| 144 | } |
| 145 | } |
| 146 | return false; |
| 147 | } |
| 148 | } |
nothing calls this directly
no test coverage detected