diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-07-31 21:10:43 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-07-31 21:10:43 +0000 |
commit | fae4baa30e641de3bc345a8eed21489a2f5ef278 (patch) | |
tree | 82aa20cc2826809410b2808a7e9018130dd1ce08 /lib/rbot/irc.rb | |
parent | 3c1535820d6faf09577221068d27be788483f8e8 (diff) |
Store the real_name information from WHO replies
Diffstat (limited to 'lib/rbot/irc.rb')
-rw-r--r-- | lib/rbot/irc.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/irc.rb b/lib/rbot/irc.rb index efc71c39..59abceec 100644 --- a/lib/rbot/irc.rb +++ b/lib/rbot/irc.rb @@ -885,7 +885,7 @@ module Irc class User < Netmask
alias :to_s :nick
- attr :real_name
+ attr_accessor :real_name
# Create a new IRC User from a given Netmask (or anything that can be converted
# into a Netmask) provided that the given Netmask does not have globs.
|