View Single Post
  #10  
Old 09-02-2009, 12:15 AM
realityincarnate
Developer
 
Join Date: Dec 2007
Posts: 122
Default

To add to the race list instead of replace it, you want to use a bitwise OR, not AND.
Code:
UPDATE items SET races = races | 2048
Reply With Quote