Recently we experienced a simmilar issue.
- Code: Select all
WARN 2016-02-17 19:50:18.363 {00} <NOSCOPE> # CmSnowdrift::_meltSnowAt() - can't remove snow at [t446 17x110]
I've managed to remove all the snow from the map by running these SQL commands:
- Code: Select all
UPDATE geo_patch SET Substance=19, LevelFlags=0, IsServerOnly=1 WHERE Substance=25;
UPDATE terrain_blocks SET CachedGeoVersion=NULL, CachedTerCRC=NULL, CachedServerGeoIdxCRC=NULL, CachedServerGeoDatCRC=NULL, CachedClientGeoIdxCRC=NULL, CachedClientGeoDatCRC=NULL, PackedTerCRC=NULL, PackedClientGeoIdxCRC=NULL, PackedClientGeoDatCRC=NULL, CachedClientGeoIdxSize=NULL, CachedClientGeoDatSize=NULL;
If you combine it with the fix that MacDante has mentioned, I think it's a good solution until the devs fix it.