diff options
Diffstat (limited to 'sp/src/game/client/c_baseplayer.cpp')
| -rw-r--r-- | sp/src/game/client/c_baseplayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sp/src/game/client/c_baseplayer.cpp b/sp/src/game/client/c_baseplayer.cpp index 8e4ff89f..74c12bbc 100644 --- a/sp/src/game/client/c_baseplayer.cpp +++ b/sp/src/game/client/c_baseplayer.cpp @@ -2178,7 +2178,7 @@ void C_BasePlayer::PlayPlayerJingle() if ( !filesystem->FileExists( fullsoundname ) )
{
char custname[ 512 ];
- Q_snprintf( custname, sizeof( custname ), "downloads/%s.dat", soundhex );
+ Q_snprintf( custname, sizeof( custname ), "download/user_custom/%c%c/%s.dat", soundhex[0], soundhex[1], soundhex );
// it may have been downloaded but not copied under materials folder
if ( !filesystem->FileExists( custname ) )
return; // not downloaded yet
|