feat: add TMP3 ticker for Trivia Murder Party 3

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
cottongin
2026-06-24 12:47:36 -04:00
parent 48603a02e7
commit d4e366ae8e
3 changed files with 5 additions and 0 deletions

View File

@@ -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",

View File

@@ -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},

View File

@@ -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 |