-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 'master'
[RELEASE] merge Develop/1.3 into master See merge request hull-seals/code/irc/halpybot!61
- Loading branch information
Showing
51 changed files
with
2,082 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from src.commands import * | ||
from src.packages import * | ||
from .commands import * | ||
from .packages import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,9 @@ | ||
""" | ||
HalpyBOT v1.1 | ||
commands\__init__.py - Command initialization script | ||
Copyright (c) 2021 The Hull Seals, | ||
All rights reserved. | ||
Licensed under the GNU General Public License | ||
See license.md | ||
""" | ||
|
||
from typing import List | ||
from src.packages.command.commandhandler import Commands | ||
|
||
from src.packages.command import Commands | ||
from .announcer import * | ||
from .bot_management import * | ||
from .delayedboard import * | ||
from .fact import * | ||
from .forcejoin import * | ||
|
||
@Commands.command("ping") | ||
async def cmd_ping(ctx, args: List[str]): | ||
""" | ||
https://tinyurl.com/yylju9hg | ||
Ping the bot, to check if it is alive | ||
Usage: !ping | ||
Aliases: n/a | ||
""" | ||
await ctx.reply("Pong!") | ||
from .edsm import * | ||
from .userinfo import * | ||
from .utils import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from ..announcer import * | ||
from .manual_case import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from ..bot_management.puppet import * | ||
from ..bot_management.settings import * | ||
from ..bot_management.shutdown import * | ||
from .puppet import * | ||
from .settings import * | ||
from .shutdown import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.