Oops setting wrong members

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-19 16:18:39 +02:00
parent 464317dc4b
commit bc36414434

View file

@ -39,9 +39,11 @@ void() main = {
time = 10;
self.nextthink = stand1;
print("Setting think\n");
self.think = stand1;
self.nextthink();
self.nextthink();
self.nextthink();
print("Running think\n");
self.think();
self.think();
self.think();
};