diff options
author | Timo Sirainen <cras@irssi.org> | 2002-04-28 11:29:49 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-04-28 11:29:49 +0000 |
commit | cb85b0081e05b27d53c5f6f3f68fb256a6b0daed (patch) | |
tree | 37e9c6789ed69c6121900d2e9f73ec7a0cbd2872 | |
parent | 086e8ac2ff766c9c3f887bf79e626915006da70a (diff) | |
download | irssi-cb85b0081e05b27d53c5f6f3f68fb256a6b0daed.zip |
added host param to your_nick_changed format too
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2732 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/fe-common/core/module-formats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/module-formats.c b/src/fe-common/core/module-formats.c index 2806d5aa..77995add 100644 --- a/src/fe-common/core/module-formats.c +++ b/src/fe-common/core/module-formats.c @@ -102,7 +102,7 @@ FORMAT_REC fecommon_core_formats[] = { { "not_invited", "You have not been invited to a channel!", 0 }, { "new_topic", "{nick $0} changed the topic of {channel $1} to: $2", 4, { 0, 0, 0, 0 } }, { "topic_unset", "Topic unset by {nick $0} on {channel $1}", 4, { 0, 0, 0, 0 } }, - { "your_nick_changed", "You're now known as {nick $1}", 3, { 0, 0, 0 } }, + { "your_nick_changed", "You're now known as {nick $1}", 4, { 0, 0, 0, 0 } }, { "nick_changed", "{channick $0} is now known as {channick_hilight $1}", 4, { 0, 0, 0, 0 } }, { "talking_in", "You are now talking in {channel $0}", 1, { 0 } }, { "not_in_channels", "You are not on any channels", 0 }, |