Multiple Audio listeners in multiplayer game?

My audio listener is attached to my camera, which is a child object of my Player Prefab. However, when another player joins the game, Unity makes a note at the bottom of the screen that multiple audio listeners are not supported, and the audio does not work correctly (sounds not playing, etc). How should I go about fixing this? (C#)

You would have to move the audio listener onto its own gameobject that is not duplicated as new players join the game. There can only be one per scene so simply do not attach it in any way on your player prefab.

Edit:

It seems that each player in a multiplayer game has its own scene. Because of this, the technique that is used to combat the issue of multiple audio listeners is for each player to disable all other audio listeners upon spawning into the game.