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

Method getAllowedModes

code/src/java/pcgen/core/GameMode.java:874–885  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

872 }
873
874 public List<String> getAllowedModes()
875 {
876 if (allowedModes == null)
877 {
878 final List<String> modes = new ArrayList<>(1);
879 modes.add(name);
880
881 return modes;
882 }
883
884 return allowedModes;
885 }
886
887 /**
888 * Levels at which all characters get bonus feats.

Callers 4

performAnalysisMethod · 0.95
getGameModesMethod · 0.80
parcePCGSourceOnlyMethod · 0.80

Calls 1

addMethod · 0.65

Tested by

no test coverage detected