Follow up to 6748ff7

* Fixed pre-increment and pre-decrement operators for achievement condition parsing.
Thanks to @Lemongrass3110!
This commit is contained in:
aleos89 2017-07-31 14:25:31 -04:00
parent f4338adab7
commit c0556a397e

View File

@ -879,8 +879,8 @@ const char* av_parse_subexpr(const char* p, int limit, struct av_condition *pare
p = skip_space(p);
while((
(op=C_ADD,opl=9,len=1,*p=='+') ||
(op=C_SUB,opl=9,len=1,*p=='-') ||
((op=C_ADD,opl=9,len=1,*p=='+') && p[1]!='+') ||
((op=C_SUB,opl=9,len=1,*p=='-') && p[1]!='-') ||
(op=C_MUL,opl=10,len=1,*p=='*') ||
(op=C_DIV,opl=10,len=1,*p=='/') ||
(op=C_MOD,opl=10,len=1,*p=='%') ||