mirror of
https://github.com/Ryujinx/ryuko-ng.git
synced 2024-12-23 06:45:36 +00:00
meme: add btwiuse
This commit is contained in:
parent
04661d3922
commit
a83c0ed94b
|
@ -2,6 +2,7 @@ import random
|
|||
import discord
|
||||
from discord.ext import commands
|
||||
import math
|
||||
import platform
|
||||
from helpers.checks import check_if_staff_or_ot
|
||||
|
||||
|
||||
|
@ -43,6 +44,13 @@ class Meme:
|
|||
f" User is now {celsius}°C "
|
||||
f"({fahrenheit}°F, {kelvin}K).")
|
||||
|
||||
@commands.check(check_if_staff_or_ot)
|
||||
@commands.command(hidden=True)
|
||||
async def btwiuse(self, ctx):
|
||||
"""btw i use arch"""
|
||||
uname = platform.uname()
|
||||
await ctx.send(f"BTW I use {uname.system} {uname.release}")
|
||||
|
||||
@commands.check(check_if_staff_or_ot)
|
||||
@commands.command(hidden=True)
|
||||
async def yahaha(self, ctx):
|
||||
|
|
Loading…
Reference in a new issue