Skip to content

Commit

Permalink
Fix Compile Error
Browse files Browse the repository at this point in the history
  • Loading branch information
Deaod committed Apr 17, 2024
1 parent faf760d commit 53b170e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Classes/bbPlayer.uc
Original file line number Diff line number Diff line change
Expand Up @@ -4580,7 +4580,6 @@ exec function setForcedTeamSkins(int maleSkin, int femaleSkin) {
exec function SetHitSound(byte hs) {
if (hs >= 0 && hs < 16) {
Settings.SelectedHitSound = hs;
class'bbPlayerStatics'.default.PlayedHitSound = none;
IGPlus_SaveSettings();
ClientMessage("HitSound set!");
} else {
Expand All @@ -4591,7 +4590,6 @@ exec function SetHitSound(byte hs) {
exec function SetTeamHitSound(byte hs) {
if (hs >= 0 && hs < 16) {
Settings.SelectedTeamHitSound = hs;
class'bbPlayerStatics'.default.PlayedTeamHitSound = none;
IGPlus_SaveSettings();
ClientMessage("Team HitSound set!");
} else {
Expand Down

0 comments on commit 53b170e

Please sign in to comment.