View Single Post
  #2  
Old 05-31-2009, 01:43 PM
Shendare
Dragon
 
Join Date: Apr 2009
Location: California
Posts: 814
Default

Quote:
Originally Posted by GeorgeS View Post
Fix your table with

Code:
UPDATE loottable SET  mincash=maxcash+1  WHERE  mincash>maxcash ;
GeorgeS
Unfortunately, this will not fix the problem, since mincash will still be greater than maxcash.

It would have to be more along the lines of:

Code:
UPDATE loottable SET  maxcash=mincash  WHERE  mincash>maxcash
- Shendare
Reply With Quote