meme: add btwiuse

This commit is contained in:
Ave Ozkal 2018-12-29 22:22:15 +03:00
parent 04661d3922
commit a83c0ed94b
No known key found for this signature in database
GPG key ID: 09356ABAA42C842B

View file

@ -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):