Skip to content

Commit

Permalink
fix skill level 1 awarding perk points
Browse files Browse the repository at this point in the history
  • Loading branch information
p-marques committed Nov 25, 2022
1 parent de70f99 commit 6646077
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/r6/scripts/SDPPL/sdppl_base.reds
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ public class SDPPL extends ScriptableSystem {
return;
}
if Equals(request.newLevel, 1) {
this.Log("New level is 1. Ignoring...");
return;
}
if Equals(request.statType, gamedataStatType.Level) {
this.HandlePlayerLevelUp(request.newLevel);
}
Expand Down

0 comments on commit 6646077

Please sign in to comment.