For some reason, when I loop through the list of players in a campaign and run playerIsGM for each of them, it returns false in every case, even though two of the players are flagged as GM. Any ideas? var players = findObjs({ type: 'player' });
log(players); //returns array of players
_.each(players, function(item, idx){
var id1 = item.get("id");
log(id1); //returns Id
log(playerIsGM(id1)); //returns false
});