# File lib/rbot/botuser.rb, line 245 def autologin=(vnew) vold = @autologin @autologin = vnew if vold && !vnew @netmasks.each { |n| Auth.manager.maskdb.remove(self, n) } elsif vnew && !vold @netmasks.each { |n| Auth.manager.maskdb.add(self, n) } end end