Hero setting merging

I’m having a problem where my hero setting from team 1 and 2 will merge together for example I’ll set Roadhog hp to 70% on team 1 and 300% on team two save it leave go back into Roadhog setting and see that the indicator that shows they have different settings disappear right in front of my eyes n both r now set to 300%
How do I fix this

I could reproduce the bug. I set Hog HP to 70% (team 1) and 300% (team 2). Then, exit the menu to lobby, go back, and his HP is 300% for both teams.

To fix it, after both are 300%, I changed team 1 HP back to 70%, and it never reverted. However, you can use workshop to make sure it will not go back to 300% (set both to 100% in hero menu):

rule("70% HP Team 1")
{
	event
	{
		Ongoing - Each Player;
		Team 1;
		Roadhog;
	}

	actions
	{
		Set Max Health(Event Player, 70);
	}
}

rule("300% HP Team 2")
{
	event
	{
		Ongoing - Each Player;
		Team 2;
		Roadhog;
	}

	actions
	{
		Set Max Health(Event Player, 300);
	}
}
rule("100% HP No Roadhog")
{
	event
	{
		Ongoing - Each Player;
		All;
		All;
	}

	conditions
	{
		Hero Of(Event Player) != Hero(Roadhog);
	}

	actions
	{
		Set Max Health(Event Player, 100);
	}
}
1 Like