1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-12 05:14:10 +02:00

Error fix

This commit is contained in:
Brian Fiete 2020-09-19 05:15:43 -07:00
parent f1a094536f
commit 2fa72ceb45

View file

@ -2437,7 +2437,7 @@ namespace IDE
foundErrorText = error.mError.Contains(wantsError); foundErrorText = error.mError.Contains(wantsError);
if (!foundErrorText) if (!foundErrorText)
{ {
mScriptManager.Fail("Error at line {0} in {1} did not contain error text '{}'\n\t", lineIdx + 1, textPanel.mFilePath, wantsError); mScriptManager.Fail("Error at line {0} in {1} did not contain error text '{2}'\n\t", lineIdx + 1, textPanel.mFilePath, wantsError);
} }
} }
} }