diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-21 19:45:02 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-21 19:45:02 +0000 |
commit | aaf985347dc9dee61480b152ae7bf7d713e8def6 (patch) | |
tree | 584c684da2f8a7c4011c8cae0d270e6d176586ea /data/rbot | |
parent | 987af39e27f5bb3ec56ad516527f6a0dfea2dbe3 (diff) |
reaction plugin: it's %{key}, not %%{key}
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/reaction.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/reaction.rb b/data/rbot/plugins/reaction.rb index f70aefa1..ec48caa0 100644 --- a/data/rbot/plugins/reaction.rb +++ b/data/rbot/plugins/reaction.rb @@ -196,7 +196,7 @@ class ReactionPlugin < Plugin when :reply, :replies "reaction replies are simply messages that the bot will reply when a trigger is matched. " + "Replies can be prefixed by 'act:' (e.g. act:goes shopping) to signify that the bot should act instead of saying the message. " + - "Replies can use the %%{key} syntax to access one of the following keys: " + + "Replies can use the %{key} syntax to access one of the following keys: " + "who (the user that said the trigger), bot (the bot's own nick), " + "target (the first word following the trigger), what (whatever follows target), " + "stuff (everything that follows the trigger), match (the actual matched text), " + |