Quote:
Originally Posted by Stefan
? The server is not downloading stuff and has not been updated for a week
|
I mean the sleep/waitfor/class loading bug.
Whenever you have a class with something like
PHP Code:
function onCreated() {
this.mybool = true;
}
and then you join an object to the class like
PHP Code:
temp.n = new TStaticVar();
temp.n.join("classname");
Then you can't access this.mybool until you wait for ~0.1 seconds or so for the class to load using a sleep(). It's a pretty big problem on many servers, especially kingdoms iphone since we make heavy use of classes as objects.