新增冒险系统
This commit is contained in:
@@ -175,6 +175,12 @@ async def handle_command(game_type: str, command: str,
|
||||
game = AlchemyGame()
|
||||
return await game.handle(command, chat_id, user_id)
|
||||
|
||||
# 冒险系统
|
||||
if game_type == 'adventure':
|
||||
from games.adventure import AdventureGame
|
||||
game = AdventureGame()
|
||||
return await game.handle(command, chat_id, user_id)
|
||||
|
||||
# 积分赠送系统
|
||||
if game_type == 'gift':
|
||||
from games.gift import GiftGame
|
||||
|
||||
Reference in New Issue
Block a user