Fix for math expression parsing

This commit is contained in:
Bruce Hill 2018-04-30 14:50:25 -07:00
parent bf24824660
commit 35a5539185
3 changed files with 3 additions and 3 deletions

View File

@ -153,7 +153,7 @@ Tree("Block", {
return nomsu
end
})
local math_expression = re.compile([[ "%" (" " [*/^+-] " %")+ ]])
local math_expression = re.compile([[ "%" (" " [*/^+-] " %")+ !. ]])
Tree("Action", {
as_lua = function(self, nomsu)
local stub = self:get_stub()

View File

@ -103,7 +103,7 @@ Tree "Block",
nomsu\append "\n"
return nomsu
math_expression = re.compile [[ "%" (" " [*/^+-] " %")+ ]]
math_expression = re.compile [[ "%" (" " [*/^+-] " %")+ !. ]]
Tree "Action",
as_lua: (nomsu)=>
stub = @get_stub!