mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-12 07:58:05 +00:00
Merge branch 'sohl1.2' into echoes
This commit is contained in:
commit
0a41f6ec70
@ -164,6 +164,16 @@ void CBasePlatTrain::KeyValue( KeyValueData *pkvd )
|
||||
m_bStopSnd = atoi( pkvd->szValue );
|
||||
pkvd->fHandled = TRUE;
|
||||
}
|
||||
else if( FStrEq( pkvd->szKeyName, "custommovesnd" ) )
|
||||
{
|
||||
pev->noise = ALLOC_STRING( pkvd->szValue );
|
||||
pkvd->fHandled = TRUE;
|
||||
}
|
||||
else if( FStrEq( pkvd->szKeyName, "customstopsnd" ) )
|
||||
{
|
||||
pev->noise1 = ALLOC_STRING(pkvd->szValue);
|
||||
pkvd->fHandled = TRUE;
|
||||
}
|
||||
else if( FStrEq( pkvd->szKeyName, "volume" ) )
|
||||
{
|
||||
m_volume = atof( pkvd->szValue );
|
||||
|
@ -122,7 +122,6 @@ void CShotgun::Holster( int skiplocal )
|
||||
void CShotgun::PrimaryAttack()
|
||||
{
|
||||
// don't fire underwater
|
||||
if( m_pPlayer->pev->waterlevel == 3 )
|
||||
if (m_pPlayer->pev->waterlevel == 3 && m_pPlayer->pev->watertype > CONTENT_FLYFIELD)
|
||||
{
|
||||
PlayEmptySound();
|
||||
|
Loading…
Reference in New Issue
Block a user