Update 'coin.rb'

This commit is contained in:
mud mud 2022-11-09 08:10:20 +00:00
parent cc0c60a82b
commit 0c94e60258

View File

@ -6,8 +6,6 @@ require 'discordrb'
MAX_COINS_PER_DAY = 4 MAX_COINS_PER_DAY = 4
COIN_TIMEOUT = 15 COIN_TIMEOUT = 15
SCOREBOARD = './scoreboard.yml' SCOREBOARD = './scoreboard.yml'
DUMBASS = 521596582962003968
DUMBASS_BOT = 1034966228755820575
coin_state_active = false coin_state_active = false
coins_offered_today = 0 coins_offered_today = 0
@ -91,13 +89,6 @@ bot.message(with_text: '/coins') do |event|
event.respond "#{clean_name event.author.display_name}, you have #{plural('coin', coins)}!" event.respond "#{clean_name event.author.display_name}, you have #{plural('coin', coins)}!"
end end
bot.message(from: DUMBASS_BOT) do |event|
next unless event.message.content.scan(/(?=no swearing)/).count > 0
coins = increment_coin(DUMBASS, -1)
event.respond "<@#{DUMBASS}>, you have been penalized 1 coin for the grossly negligent behavior of your Intellectual Offspring! You now have #{plural('coin', coins)}."
end
bot.run(true) bot.run(true)
loop do loop do