}
else if(element instanceof Participant)
{
logger.debug("participant");
Participant p = (Participant)element;
logger.trace("p = " + p.getName());
if(p.getRole() == Participant.Role.DUNGEON_MASTER)
{
logger.debug("participant is DM");
return false;
}
if(p.getCharacters().size() > 0)
{
logger.debug("participant is player");
return true;
}
}