9 lines
102 B
Ruby
9 lines
102 B
Ruby
class Roll
|
|
include Cinch::Plugin
|
|
|
|
match /roll/
|
|
|
|
def execute(m)
|
|
m.reply rand(1..6)
|
|
end
|
|
end
|