#344 coordinator renderer assert handling

This commit is contained in:
Mikayla Fischler
2023-09-30 12:19:04 -04:00
parent 625feb3fd1
commit 560d48084a
4 changed files with 40 additions and 29 deletions

View File

@@ -115,7 +115,7 @@ end
-- extract the custom element assert message, dropping the path to the element file
function core.extract_assert_msg(msg)
local start = string.find(msg, "@") or 1
local start = (string.find(msg, "@") + 1) or 1
return string.sub(msg, start)
end