ccarrster / kraplow

A web Western Card Game you can play online
http://chriscarr.name/westerncardgame
51 stars 24 forks source link

Panic steals barrel and both players have a barrel #158

Open Marangal opened 4 years ago

Marangal commented 4 years ago

One guy takes a barrel from his neighbour with a panico and plays it in front of him. the barrel from the victim did not dissapear. Both had a barrel now

ccarrster commented 4 years ago

Nice catch, I have noticed some cards are being duplicated. I will look at this soon.

ccarrster commented 4 years ago

The code is pretty clear... so maybe something weird is going on in the background. Object card = otherPlayer.getInPlay().remove(chosenCard); hand.add(card); userInterface.printInfo(currentPlayer.getName() + " takes a " + ((Card)card).getName() + " from " + otherPlayer.getName() + " with a Panic!");

ccarrster commented 4 years ago

Maybe a message is sent twice or interrupted.

ccarrster commented 4 years ago

Could not reproduce.