Skip to content

Commit

Permalink
fix reload on clip primary
Browse files Browse the repository at this point in the history
  • Loading branch information
Katsute authored Sep 26, 2023
1 parent bada687 commit 5507663
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rrm_attribute_clip.sp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public void ApplyPrimary(const int ent){
ApplyAttribute(ent, 4, gMul);
else
ApplyAttribute(ent, 335, gMul);
ApplyAttribute(ent, 97, 1/gMul);
ApplyAttribute(ent, 97, (1/gMul) > 1.0 ? 1.0 : (1/gMul));
}

public void ApplySecondary(const int ent){
Expand Down
2 changes: 1 addition & 1 deletion rrm_attribute_firing.sp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public void ApplyPrimary(const int ent){

public void ApplySecondary(const int ent){
ApplyAttribute(ent, 6, 1/gMul);
ApplyAttribute(ent, 97, (1/gMul) > 1 ? 1.0 : (1/gMul));
ApplyAttribute(ent, 97, (1/gMul) > 1.0 ? 1.0 : (1/gMul));
}

public void ApplyMelee(const int ent){
Expand Down

0 comments on commit 5507663

Please sign in to comment.