class Wowapi::Modules::Guild::GuildClass

GuildClass - represents the Guild resource

Public Instance Methods

members() click to toggle source

This MIGHT require refactorization tested with 588 members with no hickups, but potentially unoptimal (perhaps we should store it in memory as instance variable?)

# File lib/wowapi/modules/guild.rb, line 17
def members
  @table[:members].map{ |player_hash|
    Wowapi::Modules::Character::CharacterClass.new(player_hash)
  } if @table[:members]
end