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