mirror of
https://git.code.sf.net/p/quake/prozac-qfcc
synced 2025-03-03 08:01:21 +00:00
Can no longer judo invincible people.
This commit is contained in:
parent
8c2d5fdd12
commit
d646013ec5
1 changed files with 1 additions and 1 deletions
2
jobs.qc
2
jobs.qc
|
@ -604,7 +604,7 @@ void() JobJudoka =
|
|||
if (self.cutf_items & CUTF_CLOSECOMBAT)
|
||||
chance -= 0.25;
|
||||
|
||||
if (random() > chance)
|
||||
if (random() > chance || trace_ent.invincible_finished > time)
|
||||
{
|
||||
sprint (self, PRINT_HIGH, "Your strike is parried!\n");
|
||||
Attack_Finished(3);
|
||||
|
|
Loading…
Reference in a new issue