버그 제보) 워크샵 명령어 Payload Progress Percentage

화물의 위치를 거리 비율로 알려주는 명령어
Payload Progress Percentage 를 HUD로 출력하면
쓰레기촌은 출력이 되는데, 66번국도에선 출력이 안됩니다.
이외의 맵에도 출력되거나 안되는 맵들이 섞여 있어요.

해당 사항은 호위, 혼합 가리지 않고 섞여서 발생하고 있습니다.

출력 됨: 쓰레기촌, 하바나, 왕의 길 등
출력 안됨: 66번국도, 감시기지: 지브롤터, 블리자드 월드 등

rule("Rule 1")
{
	event
	{
		Ongoing - Global;
	}

	condition
	{
		Is Assembling Heroes == True;
	}

	action
	{
		Create HUD Text(All Players(All Teams), Custom String("{0}", Payload Progress Percentage), Null, Null, Left, 0, Color(White), Color(White), Color(White), Visible To and String, Default Visibility);
		Set Match Time(0);
		Wait(0.250, Ignore Condition);
		Set Match Time(2);
	}
}