WEAPON_EGON: Fix parameter order on Damage_Radius()

This commit is contained in:
Marco Cawthorne 2023-11-13 10:46:02 -08:00
parent 1be1c6bf47
commit 63a407bb71
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ void w_egon_primary(player pl)
vector src = Weapons_GetCameraPos(pl);
vector endpos = src + v_forward * 1024;
traceline(src, endpos, FALSE, pl);
Damage_Radius(trace_endpos, pl, 14, 64, TRUE, DMG_ELECTRO);
Damage_Radius(trace_endpos, pl, 14, 64, TRUE, WEAPON_EGON);
Client_ShakeOnce(trace_endpos, 128, 0.2, 1.0, 1.0f);
#endif