Removes levels as defined by the given Formula of the given PCClass from the given PlayerCharacter. @param levels A Formula indicating the number of levels of the given PCClass to be removed from the given PlayerCharacter. @param cl The PCClass for which the levels
(Formula levels, PCClass cl, PlayerCharacter pc)
| 145 | * if the given PlayerCharacter is null |
| 146 | */ |
| 147 | public void remove(Formula levels, PCClass cl, PlayerCharacter pc) |
| 148 | { |
| 149 | apply(pc, cl, -levels.resolve(pc, "").intValue()); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Applies a change in the given number of levels of the given PCClass to |
no test coverage detected