()
| 3455 | } |
| 3456 | |
| 3457 | public void getSpellList() |
| 3458 | { |
| 3459 | // all non-spellcaster spells are added to race |
| 3460 | // so return if it's null |
| 3461 | Race race = getRace(); |
| 3462 | if (race == null) |
| 3463 | { |
| 3464 | return; |
| 3465 | } |
| 3466 | |
| 3467 | activeSpellsFacet.process(id); |
| 3468 | setDirty(true); |
| 3469 | } |
| 3470 | |
| 3471 | /** |
| 3472 | * Parses a spells range (short, medium or long) into an Integer based on |
no test coverage detected