You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'll use A for apples, R for rock, and G for gem tiles; - will be empty space. In traditional bejeweled, swapping the G and A tiles in the middle row of:
A R
G A
A R
should yield
- R
- G
- R
In the current implementation, after the three As have matched, the G swaps back to its original position, and the resulting configuration is
- -
- R
G R
Not sure if this is intentional or not.
The text was updated successfully, but these errors were encountered:
Thanks for filing this, @bkushigian. I've seen the bug before and I think I understand what's going on. Right now, I'm not sure I want to fix it - maybe leave it as a challenge for people to fix themselves...
I'll use
A
for apples,R
for rock, andG
for gem tiles;-
will be empty space. In traditional bejeweled, swapping theG
andA
tiles in the middle row of:should yield
In the current implementation, after the three
A
s have matched, theG
swaps back to its original position, and the resulting configuration isNot sure if this is intentional or not.
The text was updated successfully, but these errors were encountered: