Skip to content

Commit f09eb5c

Browse files
authored
Remove GameId from QuoteData and Get Quote Variables
1 parent 3f051ce commit f09eb5c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

streamerbot/3.api/1.sub-actions/core/quotes/get-quote.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,5 @@ Name | Description | Example
1919
`quoteUserId` | The user id from the account that made the quote | `streamerbot`
2020
`quoteUser` | The user's display name from the account that made the quote | `StreamerBot`
2121
`quotePlatform` | The platform from the account that made the quote | `twitch`
22-
`quoteGameId` | The game id from the quote `123942`
2322
`quoteGame` | The game name from the quote | `Beat Saber`
2423
`quote` | The quote itself | `this is a quote!`

streamerbot/3.api/3.csharp/_classes/QuoteData.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ public class QuoteData
99
public string User { get; set; }
1010
public string Platform { get; set; }
1111

12-
public string GameId { get; set; }
12+
// GameId was removed in 1.0.0+ to make GameName
13+
// more flexible
14+
1315
public string GameName { get; set; }
1416

1517
public string Quote { get; set; }

0 commit comments

Comments
 (0)