Skip to content

Commit

Permalink
Update cogs/checkip.py
Browse files Browse the repository at this point in the history
Co-authored-by: Zortos <[email protected]>
  • Loading branch information
JoshuaSlui and zortos293 authored Jun 30, 2023
1 parent 94feb3f commit 32b9e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/checkip.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async def checkip(self, ctx, address):
return await ctx.respond("Please provide a valid Aternos IP.")
nip = address.split(".")[0]
if len(nip) > 20 or len(nip) < 4:
return await ctx.respond(f"Aternos IPs must contain between 4 to 20 characters. You have {len(nip)}/20 characters.")
return await ctx.respond(f"Aternos IPs must contain between 4 to 20 characters. You have {len(nip)}/20 characters.", ephemeral=True)
await ctx.defer()
embed = Embed()
stat = await wait_for(get_server_status(address), timeout=2)
Expand Down

0 comments on commit 32b9e93

Please sign in to comment.