Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

another great commit #224

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions cogs/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ class misc(commands.Cog):
def __init__(self, bot: commands.Bot) -> None:
self.bot = bot
self.DB = bot.DB


@commands.command(aliases = ["jack", "sponserachild"])
async def tiki(self, ctx):
"""Another great commit by justin"""
await ctx.send("Please buy us tiki fire rum: https://www.thewhiskyexchange.com/p/24202/admiral-vernons-old-j-spiced-tiki-fire-rum")

@commands.command()
async def rate(self, ctx, user: discord.User = None):
"""Rates users out of 100.
Expand All @@ -44,7 +49,7 @@ async def rate(self, ctx, user: discord.User = None):
async def ship(self, ctx, user: discord.User = None):
"""Ships a user with a random other user.

Results are not endorsed by Snake Bot
Results are endorsed by Snake Bot

user: discord.User
Defaults to author.
Expand All @@ -66,7 +71,7 @@ async def ship(self, ctx, user: discord.User = None):
async def match(self, ctx, user1: discord.User, user2: discord.User = None):
"""Sees how much of a match two users are.

Results are not endorsed by Snake Bot
Results are endorsed by Snake Bot

user1: discord.User
user2: discord.User
Expand Down