TubiaBot/plugins/roll.rb
2016-03-08 18:10:59 +01:00

9 lines
102 B
Ruby

class Roll
include Cinch::Plugin
match /roll/
def execute(m)
m.reply rand(1..6)
end
end