mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Move dnditem and dndspell to the rpg pack
This commit is contained in:
parent
155e024e67
commit
daecbc9f8c
4 changed files with 5 additions and 5 deletions
|
@ -1,8 +1,7 @@
|
|||
import typing
|
||||
import aiohttp
|
||||
import sortedcontainers
|
||||
from royalnet.commands import *
|
||||
from royalnet.utils import parse_5etools_entry
|
||||
from ..utils import parse_5etools_entry
|
||||
|
||||
|
||||
class DnditemCommand(Command):
|
|
@ -1,8 +1,8 @@
|
|||
import typing
|
||||
import aiohttp
|
||||
import sortedcontainers
|
||||
from royalnet.commands import *
|
||||
from royalnet.utils import parse_5etools_entry, ordinalformat, andformat
|
||||
from royalnet.utils import ordinalformat, andformat
|
||||
from ..utils import parse_5etools_entry
|
||||
|
||||
|
||||
class DndspellCommand(Command):
|
|
@ -1,3 +1,4 @@
|
|||
from .dndproficiencytype import DndProficiencyType
|
||||
from .parse5etoolsentry import parse_5etools_entry
|
||||
|
||||
__all__ = ["DndProficiencyType"]
|
||||
__all__ = ["DndProficiencyType", "parse_5etools_entry"]
|
||||
|
|
Loading…
Reference in a new issue