Quote:
Originally Posted by Akkadius
EDIT: BTW your new compile is erroring out MYSQL syntax:
This is one of two that I have encountered, the same error as followed:
Code:
UPDATE zone set fog_density = 0.33 WHERE zoneidnumber = 342;
[Err] 1054 - Unknown column 'fog_density' in 'field list'
|
Yeah, that is a new column that KLS added to the zone table very recently (Rev1513), and the reason I put it in a separate update statement, so the first,
main, zone table row update will go through if you don't have that column, and the separate update for fog_density will error if you don't have it, but can be
safely ignored.
I meant to put a comment preceding the fog_density update to that effect, but forgot.