From 63899a08d54831efb6e8c5b6e29ede22c6af73dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=9A=E7=BE=85=E7=8B=BC?= Date: Wed, 22 Feb 2023 18:42:09 +0800 Subject: [PATCH] Update __init__.py --- modules/dice/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/dice/__init__.py b/modules/dice/__init__.py index 41931316..847d9972 100644 --- a/modules/dice/__init__.py +++ b/modules/dice/__init__.py @@ -2,8 +2,8 @@ from core.builtins.message import MessageSession from core.component import on_command from .dice import roll -dice = on_command('dice', alias={'d20': 'dice d20', 'd100': 'dice d100', - 'd6': 'dice d6'}, developers=['Light-Beacon'], desc='随机骰子',) +dice = on_command('dice', alias={'d4': 'dice d4', 'd6': 'dice d6', + 'd8': 'dice d8', 'd10': 'dice d10', 'd12': 'dice d2', 'd20': 'dice d20'}, developers=['Light-Beacon'], desc='随机骰子',) @dice.handle(' [] {摇动指定骰子,可指定 dc 判断判定。}',)