]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Oops setting wrong members
authorWolfgang (Blub) Bumiller <blub@speed.at>
Sun, 19 Aug 2012 14:18:39 +0000 (16:18 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Sun, 19 Aug 2012 14:18:39 +0000 (16:18 +0200)
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();
 };