Skip to content
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

Add message for the auto tracker disconnect limit #38

Merged
merged 1 commit into from
Dec 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Profiles/Default/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,8 @@ AutoTracker:
- Text: Auto tracker connected
WhenDisconnected:
- Text: Auto tracker disconnected
WhenDisconnectLimitReached:
- Text: Auto tracker connection could not be established. Please ensure the correct rom is loaded and any required software is running, then re-enable auto tracking.
GameStarted:
- Text: Incoming PB for seed {0}
GameStartedMultiplayer:
Expand Down
1 change: 1 addition & 0 deletions Profiles/Templates/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ Chat:
AutoTracker:
WhenConnected:
WhenDisconnected:
WhenDisconnectLimitReached:
GameStarted:
GameStartedMultiplayer:
GameStartedNonCas:
Expand Down
11 changes: 11 additions & 0 deletions Schemas/responses.json
Original file line number Diff line number Diff line change
Expand Up @@ -2355,6 +2355,17 @@
}
]
},
"WhenDisconnectLimitReached": {
"description": "Gets the phrases to respond when the Auto Tracker has been stuck in a connect/disconnect loop and has given up on trying to connect.",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SchrodingersString"
}
]
},
"GameStarted": {
"description": "Gets the phrases to respond with when the game is started.",
"oneOf": [
Expand Down
Loading