diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-08-29 07:44:41 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-08-29 07:44:41 +0000 |
commit | b565bf81cbe456205b9f9fcf9e3960109c5b7de6 (patch) | |
tree | a8ae49548cdb0d1a9b01c0caa5e0259db24da1a3 | |
parent | 9fc1892ba3e5434d3e0a6fba08b6760bbe400f0e (diff) |
echo must default to false
-rw-r--r-- | data/rbot/plugins/script.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/rbot/plugins/script.rb b/data/rbot/plugins/script.rb index f8e2c67f..431b5246 100644 --- a/data/rbot/plugins/script.rb +++ b/data/rbot/plugins/script.rb @@ -170,6 +170,7 @@ plugin = ScriptPlugin.new plugin.register( "script" ) plugin.default_auth( 'edit', false ) plugin.default_auth( 'eval', false ) +plugin.default_auth( 'echo', false ) plugin.map 'script add -f :name *code', :action => 'handle_add_force', :auth_path => 'edit' plugin.map 'script add :name *code', :action => 'handle_add', :auth_path => 'edit' |