新增三国杀系统
This commit is contained in:
@@ -168,6 +168,12 @@ async def handle_command(game_type: str, command: str,
|
||||
from games.gomoku import GomokuGame
|
||||
game = GomokuGame()
|
||||
return await game.handle(command, chat_id, user_id)
|
||||
|
||||
# 三国杀
|
||||
if game_type == 'sanguosha':
|
||||
from games.sanguosha import SanguoshaGame
|
||||
game = SanguoshaGame()
|
||||
return await game.handle(command, chat_id, user_id)
|
||||
|
||||
# 积分系统
|
||||
if game_type == 'points':
|
||||
|
||||
Reference in New Issue
Block a user