only updating firstturn if it's less than before or was nul

This commit is contained in:
Enno Rehling 2005-10-12 20:34:32 +00:00
parent 6b27b2a0c2
commit d4a0c6c06c
1 changed files with 1 additions and 1 deletions

View File

@ -1144,7 +1144,7 @@ parse_quit(void)
} }
} else { } else {
if (f->subscription) { if (f->subscription) {
sql_print(("UPDATE subscriptions SET status='ACTIVE', lastturn=%d, firstturn=%d, password='%s' WHERE id=%u;\n", sql_print(("UPDATE subscriptions SET status='ACTIVE', lastturn=%d, firstturn=greatest(firstturn,%d), password='%s' WHERE id=%u;\n",
f->lastorders, f->lastorders-f->age, f->lastorders, f->lastorders-f->age,
f->override, f->subscription)); f->override, f->subscription));
} }