1
0
Fork 0
mirror of synced 2024-06-21 12:00:16 +12:00

Added shard id/count to the server info command

This commit is contained in:
Phxntxm 2016-12-08 21:11:05 -06:00
parent 8bfe396c07
commit a456099944

View file

@ -60,7 +60,7 @@ class Stats:
embed.add_field(name='Owner', value=server.owner.display_name)
# Add the shard ID
embed.set_footer(text="Server is on shard: {}/{}".format(self.bot.shard_id, self.bot.shard_count))
embed.set_footer(text="Server is on shard: {}/{}".format(self.bot.shard_id+1, self.bot.shard_count))
await self.bot.say(embed=embed)