(PlayerCharacter pc, PCClass cl, PersistentTransitionChoice<T> ch)
| 129 | } |
| 130 | |
| 131 | private <T> void process(PlayerCharacter pc, PCClass cl, PersistentTransitionChoice<T> ch) |
| 132 | { |
| 133 | List<T> list = new ArrayList<>(); |
| 134 | for (String s : choiceList) |
| 135 | { |
| 136 | list.add(ch.decodeChoice(Globals.getContext(), s)); |
| 137 | } |
| 138 | //use ch |
| 139 | ch.act(list, cl, pc); |
| 140 | } |
| 141 | |
| 142 | @Override |
| 143 | public String getObjectName() |
no test coverage detected