diff --git a/royalnet/packs/__init__.py b/royalnet/packs/__init__.py index 54e38ed4..aa2d62f6 100644 --- a/royalnet/packs/__init__.py +++ b/royalnet/packs/__init__.py @@ -1,7 +1,9 @@ from . import common from . import royal +from . import rpg __all__ = [ "common", "royal", + "rpg", ] diff --git a/royalnet/packs/empty/__init__.py b/royalnet/packs/empty/__init__.py deleted file mode 100644 index 4d839b28..00000000 --- a/royalnet/packs/empty/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -# This is a template Pack __init__. You can use this without changing anything in other packages too! - -from .commands import available_commands -from .tables import available_tables - -__all__ = ["commands", "tables", "available_commands", "available_tables"] - diff --git a/royalnet/packs/empty/commands/__init__.py b/royalnet/packs/empty/commands/__init__.py deleted file mode 100644 index 3e6d10ca..00000000 --- a/royalnet/packs/empty/commands/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -# Imports go here! - - -# Enter the commands of your Pack here! -available_commands = [ - -] - -# Don't change this, it should automatically generate __all__ -__all__ = [command.__class__.__qualname__ for command in available_commands] diff --git a/royalnet/packs/empty/tables/__init__.py b/royalnet/packs/empty/tables/__init__.py deleted file mode 100644 index 23bc7c24..00000000 --- a/royalnet/packs/empty/tables/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -# Imports go here! - - -# Enter the tables of your Pack here! -available_tables = [ - -] - -# Don't change this, it should automatically generate __all__ -__all__ = [table.__class__.__qualname__ for table in available_tables]