meme: add btwiuse
This commit is contained in:
parent
04661d3922
commit
a83c0ed94b
1 changed files with 8 additions and 0 deletions
|
@ -2,6 +2,7 @@ import random
|
||||||
import discord
|
import discord
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
import math
|
import math
|
||||||
|
import platform
|
||||||
from helpers.checks import check_if_staff_or_ot
|
from helpers.checks import check_if_staff_or_ot
|
||||||
|
|
||||||
|
|
||||||
|
@ -43,6 +44,13 @@ class Meme:
|
||||||
f" User is now {celsius}°C "
|
f" User is now {celsius}°C "
|
||||||
f"({fahrenheit}°F, {kelvin}K).")
|
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.check(check_if_staff_or_ot)
|
||||||
@commands.command(hidden=True)
|
@commands.command(hidden=True)
|
||||||
async def yahaha(self, ctx):
|
async def yahaha(self, ctx):
|
||||||
|
|
Loading…
Reference in a new issue