diff --git a/bridge/jackbox/tickers.go b/bridge/jackbox/tickers.go index 7e1b373..31f8047 100644 --- a/bridge/jackbox/tickers.go +++ b/bridge/jackbox/tickers.go @@ -13,6 +13,7 @@ var tickerSymbols = map[string]string{ "FBG4": "Fibbage 4", "TMP1": "Trivia Murder Party", "TMP2": "Trivia Murder Party 2", + "TMP3": "Trivia Murder Party 3", "DRWF": "Drawful", "DRWA": "Drawful Animate", "DD": "Dirty Drawful", diff --git a/bridge/jackbox/votes_test.go b/bridge/jackbox/votes_test.go index b90d871..849199b 100644 --- a/bridge/jackbox/votes_test.go +++ b/bridge/jackbox/votes_test.go @@ -36,6 +36,8 @@ func TestDetectVote_Ticker(t *testing.T) { {"qpl3++", true, "up", "QPL3"}, {"TMP2--", true, "down", "TMP2"}, {"tmp2--", true, "down", "TMP2"}, + {"TMP3++", true, "up", "TMP3"}, + {"tmp3--", true, "down", "TMP3"}, {"DD++", true, "up", "DD"}, {"dd--", true, "down", "DD"}, {"YDKJ++", true, "up", "YDKJ"}, @@ -104,6 +106,7 @@ func TestLookupTicker(t *testing.T) { {"qpl3", "Quiplash 3", true}, {"DD", "Dirty Drawful", true}, {"EW", "Earwaxâ„¢", true}, + {"TMP3", "Trivia Murder Party 3", true}, {"TWEP", "The Wheel of Enormous Proportions", true}, {"ZZZZ", "", false}, {"", "", false}, diff --git a/docs/IRC.md b/docs/IRC.md index 774584b..6a0e9de 100644 --- a/docs/IRC.md +++ b/docs/IRC.md @@ -132,6 +132,7 @@ Vote on a specific game by its ticker symbol: | `TKOX` | Tee K.O. T-Shirt Knock Out | | `TMP1` | Trivia Murder Party | | `TMP2` | Trivia Murder Party 2 | +| `TMP3` | Trivia Murder Party 3 | | `TP` | Talking Points | | `TPM` | The Poll Mine | | `TWEP` | The Wheel of Enormous Proportions |