TubiaBot/plugins/roll.rb

10 lines
102 B
Ruby
Raw Permalink Normal View History

2016-03-08 18:10:59 +01:00
class Roll
include Cinch::Plugin
match /roll/
def execute(m)
m.reply rand(1..6)
end
end