X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Fscript.rb;h=8a3e1e847a0876416906a8b86186ba9a91c95e6a;hb=27cb79be57f9377d8c13dab2d7d0776e80dfd115;hp=f6d867c53e9ffb80353a140550d996316b17307a;hpb=427b14e3ee7f7d7d7769069b8b0816e4e59e3bad;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/script.rb b/data/rbot/plugins/script.rb index f6d867c5..8a3e1e84 100644 --- a/data/rbot/plugins/script.rb +++ b/data/rbot/plugins/script.rb @@ -64,6 +64,7 @@ class ScriptPlugin < Plugin m.reply( e.inspect ) end } + m.replied = true end end @@ -79,6 +80,7 @@ class ScriptPlugin < Plugin m.reply( e.inspect ) end } + m.replied = true end @@ -93,6 +95,7 @@ class ScriptPlugin < Plugin m.reply( e.inspect ) end } + m.replied = true end @@ -111,7 +114,7 @@ class ScriptPlugin < Plugin command = Command.new( code, nick, created, channel ) @commands[name] = command - m.reply( "done" ) + m.okay end @@ -127,7 +130,7 @@ class ScriptPlugin < Plugin end @commands.delete( name ) - m.reply( "done" ) + m.okay end