-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Alignment] 1.0.0 Generate alignment charts based on chat history
- Generate an alignment chart randomly picked from previous members in the channel. - Pick specific slots for who goes where in the alignment chart. - Customize the display to fit your server's theme.
- Loading branch information
1 parent
ab2be49
commit daebffb
Showing
6 changed files
with
654 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import json | ||
from pathlib import Path | ||
|
||
from .alignment import Alignments | ||
|
||
with open(Path(__file__).parent / "info.json") as fp: | ||
__red_end_user_data_statement__ = json.load(fp)["end_user_data_statement"] | ||
|
||
|
||
async def setup(bot): | ||
cog = Alignments(bot) | ||
await bot.add_cog(cog) |
Oops, something went wrong.