I found something new in the code of League of Legends.
It's called "Tag Team".
Anyone a Idea what could it be?
I know thats will be a new Gamemode.
Code:
private static function setTagTeamOverrides(param1:PracticeGameParameters) : void {
param1.gameMutators = [GameMutator.TAG_TEAM];
param1.overriddenGamePickIds = new ArrayCollection([GameTypeConfig.PICK_ID_BLIND_PICK]);
param1.overriddenGameTitle = RiotResourceLoader.getString("custom_tagteam_game_mode_title");
param1.overriddenGameDescription = RiotResourceLoader.getString("custom_tagteam_game_mode_description");
}
Code:
public function isCustomGame(param1:String) : Boolean {
switch(param1)
{
case CUSTOM_MODE_ONE_FOR_ALL_X:
case CUSTOM_MODE_ONE_FOR_ALL:
case CUSTOM_MODE_FIRST_BLOOD:
case CUSTOM_MODE_SIX_V_SIX:
case CUSTOM_MODE_URF:
case CUSTOM_MODE_TAG_TEAM:
case CUSTOM_MODE_NORMAL:
return true;
}
}






