Skip to content

Instantly share code, notes, and snippets.

@micolous
Created February 10, 2012 14:29
Show Gist options
  • Save micolous/1789916 to your computer and use it in GitHub Desktop.
Save micolous/1789916 to your computer and use it in GitHub Desktop.
words with friends bug
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