moving channel position #6493
Unanswered
allomanticpush
asked this question in
Q&A
Replies: 1 comment 1 reply
-
This is a discord limitation, and not possible. It's possible to track when a channel position changes with @bot.event
async def on_guild_channel_update(before, after):
if before.position != after.position:
print(f"channel {after} was moved from {before.position} to {after.position}!") However, discord does not provide enough data to know who changed the channel's position and this is not possible. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I apologize for my noobish-ness, but I think asking for help will be much better than banging my head against the problem for the extended future.
Is it possible to track channel position moves? Hopefully, My server would like to catch who is rearranging the channels on a daily basis. It has been going on for weeks, and has really worn out the little bit of humor it started with.
Please let me know where to get started on this, thanks.
AllomanticPush
Beta Was this translation helpful? Give feedback.
All reactions