Quote:
Originally Posted by GeorgeS
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