File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed
Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
88## [ Unreleased]
99
10+ ### Added
11+
12+ - Support for convoke.games!
13+
1014## [ v17.0.7] ( https://github.com/lexicalunit/spellbot/releases/tag/v17.0.7 ) - 2025-11-07
1115
1216### Changed
Original file line number Diff line number Diff line change @@ -51,14 +51,13 @@ def __str__(self) -> str:
5151 "_A Table Stream link will be created when all players have joined._" ,
5252 "https://table-stream.com/" ,
5353 )
54- # To be released soon!
55- # CONVOKE = "Convoke", "_Please use Convoke for this game._", "https://www.convoke.games/"
54+ CONVOKE = "Convoke" , "_Please use Convoke for this game._" , "https://www.convoke.games/"
5655
5756
5857GAME_SERVICE_ORDER = [
5958 GameService .NOT_ANY ,
6059 GameService .SPELLTABLE ,
61- # GameService.CONVOKE, # To be released soon!
60+ GameService .CONVOKE ,
6261 GameService .TABLE_STREAM ,
6362 GameService .COCKATRICE ,
6463 GameService .X_MAGE ,
Original file line number Diff line number Diff line change @@ -54,13 +54,12 @@ class TestSpellBot(BaseMixin):
5454 "tablestream.generate_link" ,
5555 id = "tablestream" ,
5656 ),
57- # To be released soon!
58- # pytest.param(
59- # False,
60- # {"service": GameService.CONVOKE.value},
61- # "convoke.generate_link",
62- # id="convoke",
63- # ),
57+ pytest .param (
58+ False ,
59+ {"service" : GameService .CONVOKE .value },
60+ "convoke.generate_link" ,
61+ id = "convoke" ,
62+ ),
6463 pytest .param (
6564 False ,
6665 {"service" : GameService .NOT_ANY .value },
You can’t perform that action at this time.
0 commit comments