MCPcopy Create free account
hub / github.com/PCGen/pcgen / getSpellList

Method getSpellList

code/src/java/pcgen/core/PlayerCharacter.java:3457–3469  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 6

incrementClassLevelMethod · 0.95
preparePCForOutputMethod · 0.95
removeChoiceMethod · 0.80
removeChoiceMethod · 0.80
addAbilityMethod · 0.80

Calls 3

getRaceMethod · 0.95
setDirtyMethod · 0.95
processMethod · 0.65

Tested by

no test coverage detected