I\'ve got the following logic in my code:
if !@players.include?(p.name) ... end
@players is an array. Is there a method so
@players
Use unless:
unless
unless @players.include?(p.name) do ... end