Actually applies the kit to this PC. @param aPC The PlayerCharacter the alignment is applied to
(PlayerCharacter aPC)
| 45 | * @param aPC The PlayerCharacter the alignment is applied to |
| 46 | */ |
| 47 | @Override |
| 48 | public void apply(PlayerCharacter aPC) |
| 49 | { |
| 50 | for (Map.Entry<Kit, List<BaseKit>> me : appliedKits.entrySet()) |
| 51 | { |
| 52 | me.getKey().processKit(aPC, me.getValue()); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Test applying this kit to the character. |
nothing calls this directly
no test coverage detected