Browse Source

Fix ent_fire single entity processing

gravgun
mittorn 6 years ago
parent
commit
05c2e9ad92
  1. 5
      dlls/enttools.cpp

5
dlls/enttools.cpp

@ -571,7 +571,12 @@ void Ent_Fire_f( edict_t *player )
} }
if( !Ent_CheckFire( player, ent, CMD_ARGV( 2 ) ) ) if( !Ent_CheckFire( player, ent, CMD_ARGV( 2 ) ) )
{
if( !single )
continue; continue;
else
break;
}
Ent_ClientPrintf( player, "entity %i\n", i ); Ent_ClientPrintf( player, "entity %i\n", i );

Loading…
Cancel
Save