Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Dwedit

#1
It's back!

Had a game where ratings got displayed as 38.75, but leaderboard seems to load okay for now.
#2
Heard "Game Joined" sound effect, not joining game.
Reloaded page several times.
See "12357: Meta: command failed:  Internal error." in the JavaScript console.
#3
Getting the "Your client is too old; please ctrl/cmd-reload the page to get a new one." when I attempt to log in.
#4
It just keeps happening.
#6
Can also confirm that if you manage to rejoin the game (using the javascript console), you can make the opponent resign.  Game won't proceed, but reloading the page will take you back to the main screen.
#7
Had a game make the Joining noise, but the game did not start, I was still at the lobby.
If I attempted to find a game, it displayed "Already in Game"
If I reloaded, It displayed "Internal Error".
If I reloaded several times, I got the prompt that appears if you have tried to rejoin too many times.  Eventually had to click the Give Up button (which does cost you ranking points)
#8
Right now, I'm seeing the leaderboard fail to load, and whenever there's a match, both player's ranks are showing up as 38.75.
#9
I experienced this after my opponent resigned, then I continued the game against Lord Rattington.
I played a Druid, then the prompt to choose one of the boons did not appear, locking me into the "Which Boon?" prompt and making the game unplayable.
#10
Just had this happen.  Abruptly thrown out of a game into a new game.  When I reloaded the page, it took me into the table view of my previous opponent.
#11
Card Bugs / Re: Abundance triggering during Cleanup
19 March 2025, 12:25:21 AM
I think the card text is pretty clear here.  You gained a card, you got the +3 coin and +1 buy, and because it was the cleanup phase, you didn't get to use it.

There are many many footguns in Dominion where you can do something that doesn't quite work out the way you want it to.
#12
When the Highwayman effect was first introduced, it did cover up the entire card.

It might have been changed because you could have treasures that are also actions, and be able to play them as a Way.  You'd need the bottom of the card available for that.  You could also have treasure-actions get turned into pigs via Enchantress.
#13
Managed to see "Your subscription lasts another NaN days", I presume it's a visual-only bug.
#14
Can confirm that quitting the game still costs you rating points.
#15
Seeing this happen again:

        value: function createUniqueInitials() {
            var players = this.game.state.players;
            players.sort(function (a, b) {
                return a.name.localeCompare(b.name);
            });
            var previousPrefix = 1;
            for (var i = 0; i < players.length - 1; i++) {
                var prefix = 1;
                for (; prefix < players[i].name.length; prefix++) {
                    if (players[i].name[prefix - 1].toLowerCase() !== players[i + 1].name[prefix - 1].toLowerCase()) break;
                }
                players[i].initials = players[i].name.slice(0, Math.max(previousPrefix, prefix));
                previousPrefix = prefix;
            }


Upon entering this function, the array `this.game.state.players` contains two elements.

this.game.state.players[0].name = undefined
this.game.state.players[1].name = "Dwedit"

Then it crashes when it attempts to sort the players, and the game never starts.

---

It is actually possible to manually get past this one:

* Set a JavaScript breakpoint at the `var players = this.game.state.players;` line
* Go to Console, and assign `this.game.state.players[0].name = "OPPONENT"` (if players[0] was the one without a name)
* Resume execution

When I finally got past it, I saw a "make opponent resign" prompt.  The opponent was probably was having issues too.