mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
more tests
This commit is contained in:
parent
098305d649
commit
9d50fea8e5
1 changed files with 3 additions and 1 deletions
|
@ -62,7 +62,8 @@ void () blarg =
|
|||
void () eek =
|
||||
{
|
||||
traceon();
|
||||
self.origin = '0 0 0';
|
||||
if (self && self.origin)
|
||||
self.origin = '0 0 0';
|
||||
self.origin = self.origin + '1 2 3';
|
||||
traceoff();
|
||||
};
|
||||
|
@ -130,4 +131,5 @@ void () assign =
|
|||
foo = bar;
|
||||
foo = bar = 1;
|
||||
foo = bar = bar + 1;
|
||||
foo = self.nextthink = self.nextthink + 1;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue