Created
February 10, 2012 14:29
-
-
Save micolous/1789916 to your computer and use it in GitHub Desktop.
words with friends bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
So say you have a board like this: | |
CAM | |
C O | |
L L | |
CUES | |
E | |
Now I made an invalid move here: | |
CAM | |
CKOR | |
L L | |
CUES | |
E | |
And now it accepts the word and removes CLUE: | |
CAM | |
KOR | |
L | |
CUES | |
But the downside of this bug is you can't play moves that go over two words: | |
CAM | |
CZAR | |
L R | |
CUES | |
E | |
WWF will say "ZAR is not a valid word". Even though the word trying to be played is CZAR. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment