Skip to content

Commit

Permalink
Fix sound play
Browse files Browse the repository at this point in the history
  • Loading branch information
abnerfs committed Jul 28, 2018
1 parent d425837 commit 9562c10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified addons/sourcemod/plugins/abner_rss.smx
Binary file not shown.
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/abner_rss.sp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#pragma newdecls required
#pragma semicolon 1
#define PLUGIN_VERSION "2.0.0"
#define PLUGIN_VERSION "2.0.1"

//MapSounds Stuff
int g_iSoundEnts[2048];
Expand Down Expand Up @@ -377,7 +377,7 @@ void PlayMusicAll(char[] szSound)
}

float selectedVolume = GetClientVolume(i);
EmitSoundToClientAny(i, szSound, _, _, _, _, selectedVolume);
EmitSoundToClientAny(i, szSound, -2, 0, 0, 0, selectedVolume, 100, -1, NULL_VECTOR, NULL_VECTOR, true, 0.0);
}
}

Expand Down

0 comments on commit 9562c10

Please sign in to comment.