Choosing a race now announces the chosen race.

This commit is contained in:
marcin.sciesinski
2019-09-16 11:56:53 -07:00
parent 82a79974f7
commit 88436c8152

View File

@@ -38,6 +38,7 @@ public class ChooseARace implements EffectAppenderProducer {
@Override @Override
protected void validDecisionMade(int index, String result) { protected void validDecisionMade(int index, String result) {
actionContext.setValueToMemory(memorize, Race.findRaceByHumanReadable(result).toString()); actionContext.setValueToMemory(memorize, Race.findRaceByHumanReadable(result).toString());
actionContext.getGame().getGameState().sendMessage(actionContext.getPerformingPlayer() + " has chosen " + result);
} }
}); });
} }