Closed dysphie closed 2 years ago
ProgressBarShowEx causes future interactions to show an empty progress bar
ProgressBarShowEx
Repro via sourcemod:
void ShowProgressBarEx(int client, int color[3], float duration, float prefill = 0.0) { BfWrite bf = UserMessageToBfWrite(StartMessageOne("ProgressBarShowEx", client)); bf.WriteFloat(duration); bf.WriteFloat(prefill); bf.WriteBool(true); // static bf.WriteFloat(100.0); // percentage bf.WriteBool(false); // invert bf.WriteBool(true); // override color bf.WriteByte(color[0]); bf.WriteByte(color[1]); bf.WriteByte(color[2]); EndMessage(); }
ShowProgressBarEx(client, color, 5.0, 0.0);
Interact with another progress entity
Fixed in src-r5749.
ProgressBarShowEx
causes future interactions to show an empty progress barRepro via sourcemod:
Interact with another progress entity