I've heard so many different opinions, and haven't really been able to find a solid answer to this question. When/why are static variables bad?
If I wanted to store names of players in a game in a List, would it be better to make it non-static than static? If so, why?
The list would be updated everytime a player leaves/joins. It would be used to show the players who else is playing and to track their play time.