-- Rename this file to Roster.lua after altering the table below with YOUR TEAMMATES.
-- Then, remove the '#' mark from #roster.lua line in the KabKeystone.toc file.
-- This .toc file edit will need to be re-done after every curse update. This roster file edit will not.
-- Supports multiple rosters. /ti 1 is roster 1, /ti 2 is roster 2 etc.
-- You can add as many teams as you like as long as the table syntax below is followed.
-- I'll change this to be more user friendly in the future. Maybe.

local addonName, ns = ...

ns.roster = {
	[1] = { -- team 1
		"PlayerOne-RealmName",
		"PlayerTwo-RealmName",
		"PlayerThree-RealmName",
		"PlayerFour-RealmName",
		"PlayerFive-RealmName"
	},
	[2] = { -- team 2
		"PlayerOne-RealmName",
		"PlayerTwo-RealmName",
		"PlayerThree-RealmName",
		"PlayerFour-RealmName",
		"PlayerFive-RealmName"
	}
}
