diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-19 00:22:39 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-19 14:49:48 +0100 |
commit | a51ae05ee0252576a10a77c9f92c0ce096be73aa (patch) | |
tree | eec2e63314ffbe2fe4d5eaad3c9f0b23fb5a236c /data/rbot/plugins | |
parent | 3d901ac98e5bf4c4c8e1a605208fabc4ba71a73e (diff) |
script plugin: use m.okay
Diffstat (limited to 'data/rbot/plugins')
-rw-r--r-- | data/rbot/plugins/script.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/rbot/plugins/script.rb b/data/rbot/plugins/script.rb index 83a1c914..c994d4da 100644 --- a/data/rbot/plugins/script.rb +++ b/data/rbot/plugins/script.rb @@ -113,7 +113,7 @@ class ScriptPlugin < Plugin command = Command.new( code, nick, created, channel ) @commands[name] = command - m.reply( "done" ) + m.okay end @@ -129,7 +129,7 @@ class ScriptPlugin < Plugin end @commands.delete( name ) - m.reply( "done" ) + m.okay end |