Instances of a class huge problems
I'm making a game in Java, using Ready to Program IDE if it matters. It's a card game, and my game class holds an array of players(another class of mine). Presently there are two players, but if i get it working I plan on expanding that.
I've tried it as both an array and two separate objects, and neither solves my problem.
The Player classes have a few subclasses within them. Namely a hand, a flight, and an ante.
The cards put into these come from my deck class, but when I run the program, I get two Identical players, and somehow adding to one of the Player objects adds to both. I'm running out of ideas and I can't figure out why it doesnt want to allow me to have two separate and different player classes in my program. It isnt drawing the same cards from the deck multiple times unless its a timing issue (which it doesnt seem to be) as after the card is drawn from the deck, the card is deleted and the deck size reduced by one.
If anyone can help me then I'd greatly appreciate it; you'd be helping me salvage my mark. Also, if anyone wants to see the completed program when it works I can send it to people. my email is rpmalon@gmail.com
I tried to upload the file but it resets my connection, so I'm suspecting it won't let me upload a 12M file.

