-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Insert users into started games #44
Comments
Also to revive people somehow...? |
To add players to games, either
After being added, their join date and username are added to a queue. When someone dies or a shuffle is performed, they can be pulled from the queue as needed.
Then to resurrect people, we need undo the kill by whoever just killed them. This is rather messy, but somewhat doable, especially since the individual stores whoever killed them, so we can decrement their kill count. I suppose we can just take their username and join time and add them to the queue. However, this requires some more UI. Also, might want to consider having the option to mark a kick as a kill, but this will result in code duplication. |
Maybe we should focus on just resurrecting players. |
There is no need for an eliminated person to be kicked, so I think the [Kick] button should be replaced with [Resurrect], which when clicked, it will without confirmation:
|
At least in the API end I suppose
The text was updated successfully, but these errors were encountered: