add dice module

This commit is contained in:
Alexander Yakovlev 2023-01-15 20:39:32 +07:00
parent 02e2c8832c
commit 5f27514eb1
Signed by: oreolek
GPG Key ID: 8D24103F5EE2A6C0
1 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,7 @@ from evennia.contrib.grid import simpledoor
from lib.rpsystem.rpsystem import RPSystemCmdSet
from evennia.contrib.game_systems.clothing import ClothedCharacterCmdSet
from commands.cmdcustomexamine import CmdCustomExamine
from evennia.contrib.rpg import dice
class CharacterCmdSet(default_cmds.CharacterCmdSet):
@ -69,6 +70,9 @@ class CharacterCmdSet(default_cmds.CharacterCmdSet):
# Overrides @examine
self.add(CmdCustomExamine())
# RPG dice
self.add(dice.CmdDice())
class AccountCmdSet(default_cmds.AccountCmdSet):
"""
This is the cmdset available to the Account at all times. It is