Merge pull request #7523 from JoeIaquinto/bugfix/spelling-correct-skybox-exception

Correct the spelling of an exception in the Skybox plugin
This commit is contained in:
Adam
2019-01-23 20:08:10 -05:00
committed by GitHub

View File

@@ -127,7 +127,7 @@ class Skybox
{
if (!expr.startsWith("bounds"))
{
throw new IllegalArgumentException("Expceted bounds (" + filename + ":" + lineNo + ")");
throw new IllegalArgumentException("Expected bounds (" + filename + ":" + lineNo + ")");
}
x1 = Integer.parseInt(m.group("bx1")) * 8;
y1 = Integer.parseInt(m.group("by1")) * 8;