diff options
author | simon <none@none> | 2013-07-02 16:05:44 -0700 |
---|---|---|
committer | simon <none@none> | 2013-07-02 16:05:44 -0700 |
commit | d75ae6b4f43ffb82bd5db6b6b59ae3d9b8b7e989 (patch) | |
tree | e43e9236e077356a3fd7185f9fe8a954d69f7de8 /indra/lscript/lscript_compile | |
parent | f41c8f53412b3ca8500e72d9cde8e70ca0bc266e (diff) | |
parent | 0b763695bb6f5d0ddce830bd1fa77ab1a653560f (diff) |
Merge
Diffstat (limited to 'indra/lscript/lscript_compile')
-rwxr-xr-x | indra/lscript/lscript_compile/indra.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/lscript/lscript_compile/indra.l b/indra/lscript/lscript_compile/indra.l index 35cf8e85d4..8ed5f99a89 100755 --- a/indra/lscript/lscript_compile/indra.l +++ b/indra/lscript/lscript_compile/indra.l @@ -161,6 +161,7 @@ int yyerror(const char *fmt, ...); "STATUS_DIE_AT_EDGE" { count(); yylval.ival = 0x80; return(INTEGER_CONSTANT); } "STATUS_RETURN_AT_EDGE" { count(); yylval.ival = 0x100; return(INTEGER_CONSTANT); } "STATUS_CAST_SHADOWS" { count(); yylval.ival = 0x200; return(INTEGER_CONSTANT); } +"STATUS_BLOCK_GRAB_OBJECT" { count(); yylval.ival = 0x400; return(INTEGER_CONSTANT); } "AGENT_FLYING" { count(); yylval.ival = AGENT_FLYING; return(INTEGER_CONSTANT); } "AGENT_ATTACHMENTS" { count(); yylval.ival = AGENT_ATTACHMENTS; return(INTEGER_CONSTANT); } |