Skip to content

OnLiquidWeaponFiringStopped

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnLiquidWeaponFiringStopped( LiquidWeapon instance )
{
    Puts( "OnLiquidWeaponFiringStopped works!" );
}

Location

  • LiquidWeapon::StopFiring()
csharp
//---
	base.SetFlag(BaseEntity.Flags.On, false, false, true);
	if (base.isServer)
	{
		base.SendNetworkUpdateImmediate(false);
	}
	Interface.CallHook("OnLiquidWeaponFiringStopped", this);
}

Released under the MIT License.