diff --git a/models/users.js b/models/users.js index b06a64603..236feb45a 100644 --- a/models/users.js +++ b/models/users.js @@ -409,7 +409,7 @@ if (Meteor.isServer) { }); Accounts.onCreateUser((options, user) => { const userCount = Users.find().count(); - if (userCount === 0){ + if (!isSandstorm && userCount === 0 ){ user.isAdmin = true; return user; }