(CDOMObject owner, Equipment choice, PlayerCharacter pc)
| 177 | } |
| 178 | |
| 179 | @Override |
| 180 | public void applyChoice(CDOMObject owner, Equipment choice, PlayerCharacter pc) |
| 181 | { |
| 182 | Equipment bEquipment = choice.clone(); |
| 183 | bEquipment.setQty(1); |
| 184 | pc.addEquipment(bEquipment); |
| 185 | } |
| 186 | |
| 187 | @Override |
| 188 | public boolean allow(Equipment choice, PlayerCharacter pc, boolean allowStack) |
nothing calls this directly
no test coverage detected