diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-19 00:21:49 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-19 14:49:48 +0100 |
commit | 3d901ac98e5bf4c4c8e1a605208fabc4ba71a73e (patch) | |
tree | fee6e45200e1636bc8ce758345f77da2e1ed22ab | |
parent | 427b14e3ee7f7d7d7769069b8b0816e4e59e3bad (diff) |
script plugin: script echo and eval mark the message as replied
-rw-r--r-- | data/rbot/plugins/script.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/data/rbot/plugins/script.rb b/data/rbot/plugins/script.rb index f6d867c5..83a1c914 100644 --- a/data/rbot/plugins/script.rb +++ b/data/rbot/plugins/script.rb @@ -79,6 +79,7 @@ class ScriptPlugin < Plugin m.reply( e.inspect ) end } + m.replied = true end @@ -93,6 +94,7 @@ class ScriptPlugin < Plugin m.reply( e.inspect ) end } + m.replied = true end |