Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sp/src/game/server/props.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ bool CBreakableProp::HandleInteraction( int interactionType, void *data, CBaseCo
// Allows flares to ignite barnacles.
if ( interactionType == g_interactionBarnacleVictimBite )
{
if ( npc_barnacle_ignite.GetBool() && sourceEnt->IsOnFire() == false )
if ( npc_barnacle_ignite.GetBool() && sourceEnt->IsOnFire() == false && m_hFlareEnt )
{
sourceEnt->Ignite( 25.0f );
KillFlare( this, m_hFlareEnt, PROP_FLARE_IGNITE_SUBSTRACT );
Expand Down