summaryrefslogtreecommitdiff
path: root/rbot/plugins/opmeh.rb
diff options
context:
space:
mode:
authorTom Gilbert <tom@linuxbrit.co.uk>2005-07-27 15:59:13 +0000
committerTom Gilbert <tom@linuxbrit.co.uk>2005-07-27 15:59:13 +0000
commit21949774b91eaec6ecde4eaa8ad121e2c0a36b87 (patch)
tree41a7601e168018ac203bad7ca8d7f9f82515bc28 /rbot/plugins/opmeh.rb
parent51cf09ec02d089bfdd80e5f728cfc92a234dc437 (diff)
rearrange repo for packaging
Diffstat (limited to 'rbot/plugins/opmeh.rb')
-rw-r--r--rbot/plugins/opmeh.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/rbot/plugins/opmeh.rb b/rbot/plugins/opmeh.rb
deleted file mode 100644
index 2776de60..00000000
--- a/rbot/plugins/opmeh.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-class OpMehPlugin < Plugin
-
- def help(plugin, topic="")
- return "opmeh <channel> => grant user ops in <channel>"
- end
-
- def privmsg(m)
- if(m.params)
- channel = m.params
- else
- channel = m.channel
- end
- target = m.sourcenick
- @bot.sendq("MODE #{channel} +o #{target}")
- m.okay
- end
-end
-plugin = OpMehPlugin.new
-plugin.register("opmeh")