Connecting to game services...
Tell players to join with this Game ID:
------
Host ID: ...
Could not create the game due to a 'permission-denied' error. This means your Cloud Firestore security rules are not set up to allow public writes.
Please go to your Firebase project's Firestore Database > Rules tab and use the following rules to allow this game to function (this code uses 'sosta-rpg' as the ID):
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// This rule allows anyone to read/write to the public path for this app
match /artifacts/sosta-rpg/public/data/{document=**} {
allow read, write: if true;
}
}
}
Player ID: ...