]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - data/frames.qc
Oops setting wrong members
[xonotic/gmqcc.git] / data / frames.qc
index 2be51b8752e6ba605bc872b643ee3f6d72d9f5e9..9534f4af831f2110baff8bde6cef9cde465abc67 100644 (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();
 };