Method will go through the list of classes that the player character has and see if they are a spell caster and of the desired caster level. @param minLevel @return boolean
(final int minLevel)
| 3387 | * @return boolean |
| 3388 | */ |
| 3389 | public boolean isSpellCaster(final int minLevel) |
| 3390 | { |
| 3391 | return isSpellCaster(minLevel, false) > 0; |
| 3392 | } |
| 3393 | |
| 3394 | /** |
| 3395 | * Method will go through the list of classes that the player character has |
nothing calls this directly
no test coverage detected