theaigames / next

1 stars 0 forks source link

Error in java starter bot #3

Closed Lysk-fr closed 7 years ago

Lysk-fr commented 7 years ago

In BotParser > parseSettings opponentId = 2 - myId +1

With this formula opponent id is either 1 or 2 where it should be 0 or 1.

Could you change to : opponentId = 2 - (myId +1) or opponentId = (myId +1)%2 ?

Regards