public void onCall(Call call) {
PlayerId id = getId(call);
int movedAmount = getGameState().getCallValue(id);
if(movedAmount == getGameState().getPlayer(id).getStack())
dispatch(new AllInEvent(id, movedAmount));
else dispatch(new CallEvent(id, movedAmount));
}