1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-07-09 21:38:09 -05:00

Unpad brackets

This commit is contained in:
Jbleezy
2023-12-16 21:11:47 -08:00
parent 7ce0cfe9f6
commit b31110f8a6
72 changed files with 873 additions and 873 deletions

View File

@ -17,7 +17,7 @@ add_to_player_score(points, add_to_total)
points = int(points); // points must be an int
self.score += points;
self.pers[ "score" ] = self.score;
self.pers["score"] = self.score;
if (add_to_total)
{
@ -36,7 +36,7 @@ minus_to_player_score(points)
points = int(points); // points must be an int
self.score -= points;
self.pers[ "score" ] = self.score;
self.pers["score"] = self.score;
}
player_add_points_kill_bonus(mod, hit_location)