removed unimportant message

This commit is contained in:
jenz 2022-05-22 14:49:22 +02:00
parent 04dfde3683
commit 08e95f24f4

View File

@ -11,7 +11,6 @@ intents = discord.Intents.default()
intents.members = True
client = discord.Client(intents=intents)
def from_steam64(sid):
y = int(sid) - 76561197960265728
x = y % 2
@ -68,9 +67,6 @@ async def on_message(message):
zr_time = res[2]
jb_time = res[3]
allowed = res[4]
if allowed:
await message.channel.send(f"{target_name} You are already allowed into the discord server for surpassing 200 hours game time")
else:
ze_time_hours = math.floor((ze_time / 60) / 60)
ze_time_minutes = math.floor((ze_time / 60) - (ze_time_hours * 60))