diff --git a/Libraries/SPTarkov.Server.Core/Services/PlayerService.cs b/Libraries/SPTarkov.Server.Core/Services/PlayerService.cs
index f02c3574..80348d8e 100644
--- a/Libraries/SPTarkov.Server.Core/Services/PlayerService.cs
+++ b/Libraries/SPTarkov.Server.Core/Services/PlayerService.cs
@@ -9,10 +9,13 @@ public class PlayerService(
)
{
///
- /// Get level of player
+ /// Calculates the current level of a player based on their accumulated experience points.
+ /// This method iterates through an experience table to determine the highest level achieved
+ /// by comparing the player's experience against cumulative thresholds.
///
/// Player profile
- /// Level of the player
+ /// The calculated level of the player as an integer, or null if the level cannot be determined.
+ /// This value is also assigned to within the provided profile.
public int? CalculateLevel(PmcData pmcData)
{
var accExp = 0;