Quote:
Originally Posted by sotonin
No workaround so far... It's only really affected our static zones usually, as far as i can tell. and usually only the high grid zones. (zones witha lot of pathing)
|
Mmm, No that pattern hasn't affected my server anyway. It appears to be random.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|