KLS added support to allow newer clients to zone into the new versions of zones, e.g. SoD (and SoF?) to zone into the new version of nektulos, and I think highpass and maybe some others.
If you are using Underfoot, then this is broken currently due to a change I made (I changed the version number for Underfoot).
This SQL might fix it (untested, so either backup those tables, or be prepared to reverse the update if required):
Code:
update zone_points set client_version_mask = 4294967292 where client_version_mask = 2147483660;
update doors set client_Version_mask = 4294967292 where client_version_mask = 2147483660;
I don't know off the top of my head if there are any other tables that have a client_version_mask field that may also need updating.
EDIT: Just did some tests zoning into/out of nektulos and high pass and those update statements look good to me.