I'm trying to do two updates to my collection using Meteor/Mongo. But it seems to only update one of them. I've checked the Mongo docs, it seems to be correct, how come it doesn't register both?
Teams.update(myTeam,
{$inc: {points: -score}},
{$pull: {members: myMembers[who]}}
);