Crash when using chisel in world
gigabit101 opened this issue ยท 4 comments
This dose not happen all the time and it seems to be more if holding shift
http://pastebin.com/PKRPRXgt
The code at fault is:
In java -1 % 2 == -1
You'd need to do: idx = (i + variations.length - 1) % variations.length;
or: if (--i < 0) i+= variations.length;