File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
1.sub-actions/core/quotes Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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! `
Original file line number Diff line number Diff 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 ; }
You can’t perform that action at this time.
0 commit comments