if (food.consumed()) {
itemsToConsume.remove(0);
} else {
if (turn % food.getFrecuency() == 0) {
logger.debug("Consumed item: " + food);
final int amount = food.consume();
if (isChoking()) {
put("choking", amount);
} else {
if (has("choking")) {
remove("choking");