We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried the following code:
const { Card, Game, } = require('uno-engine-updated'); const game = new Game(['1', '2', '3']);
The current player is 3 and when I try to run:
game.uno('2')
I get an error like this:
TypeError: Cannot read property 'length' of undefined
The error is from game.js line 217
game.js
if (yellingPlayer.hand.length <= 2 && !this.yellers[yellingPlayer.name]) { this.yellers[yellingPlayer.name] = true; return []; }
Please let me know what is the issue here. Is it something expected from the package.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried the following code:
The current player is 3 and when I try to run:
I get an error like this:
The error is from
game.js
line 217Please let me know what is the issue here. Is it something expected from the package.
The text was updated successfully, but these errors were encountered: