only perform pinning functions on first/last pin

This commit is contained in:
mud mud 2022-10-26 12:53:33 +02:00
parent 39443ef5ef
commit e7a309a700
Signed by: mud
GPG Key ID: D29C9385CC54F61C

4
bot.rb
View File

@ -35,7 +35,7 @@ bot.reaction_add do |event|
end
if(event.emoji.name == PIN_EMOJI)
event.message.pin
event.message.pin unless event.message.reactions.include? PIN_EMOJI
end
nil # `event` is of type Respondable, so the return line of the block needs to be nil to prevent the bot sending something in the chhannel the reaction occured.
@ -43,7 +43,7 @@ end
bot.reaction_remove do |event|
next unless event.emoji.name == PIN_EMOJI
event.message.unpin
event.message.unpin unless event.message.reactions.include? PIN_EMOJI
nil
end