Posted 27 June 2013 - 07:12 PM
Version: [MC 1.4.7][CC 1.5][FTB DW20 5.3.2] Description: when working on a program I used string.find(sExample, "["), by entering the character "[" as the second argument to string.find() an error was thrown reading "vm error: java.lang.ArrayIndexOutOfBoundsException: 1", if this piece of code is used in the lua prompt the error simply is "1" in the color red. I have not tried this in the latest version but I am assuming it is still an issue since I have not seen anything in the change logs addressing it. Reproduction: create a file: arg1 = anystring, arg2 = "[" string.find(arg1, arg2), save and run, this program will crash.