remove space before comma
This commit is contained in:
parent
e26d385aed
commit
738c4efa3b
2
bot.rb
2
bot.rb
@ -64,7 +64,7 @@ bot.message(in: Integer(ENV['SENTENCE_CHANNEL'])) do |event|
|
||||
if $sentence.empty?
|
||||
next
|
||||
end
|
||||
event << "Congratulations, your sentence is: #{$sentence.values.join(" ")}#{event.message.content}"
|
||||
event << "Congratulations, your sentence is: #{$sentence.values.join(" ").gsub(/\s,/, ",")}#{event.message.content}"
|
||||
$sentence.clear
|
||||
next
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user