projects
/
xonotic
/
gmqcc.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
464317d
)
Oops setting wrong members
author
Wolfgang (Blub) Bumiller <blub@speed.at>
Sun, 19 Aug 2012 14:18:39 +0000
(16:18 +0200)
committer
Wolfgang (Blub) Bumiller <blub@speed.at>
Sun, 19 Aug 2012 14:18:39 +0000
(16:18 +0200)
data/frames.qc
patch
|
blob
|
history
diff --git
a/data/frames.qc
b/data/frames.qc
index 2be51b8752e6ba605bc872b643ee3f6d72d9f5e9..9534f4af831f2110baff8bde6cef9cde465abc67 100644
(file)
--- a/
data/frames.qc
+++ b/
data/frames.qc
@@
-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();
};