Skip to content

Commit

Permalink
Fix Compile Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Deaod committed Feb 27, 2024
1 parent 723dfae commit 6ac9064
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/bbPlayer.uc
Original file line number Diff line number Diff line change
Expand Up @@ -3539,7 +3539,7 @@ function xxNN_Fire( float TimeStamp, int ProjIndex, vector ClientLoc, vector Cli
LastFireTimeStamp = TimeStamp;

if (TimeStamp + 0.1 < CurrentTimeStamp)
return
return;

xxEnableCarcasses();
zzNN_ProjIndex = ProjIndex;
Expand Down Expand Up @@ -3630,7 +3630,7 @@ function xxNN_AltFire( float TimeStamp, int ProjIndex, vector ClientLoc, vector
LastAltFireTimeStamp = TimeStamp;

if (TimeStamp + 0.1 < CurrentTimeStamp)
return
return;

xxEnableCarcasses();
zzNN_ProjIndex = ProjIndex;
Expand Down

0 comments on commit 6ac9064

Please sign in to comment.