09.08.2013, 17:26
Are you sure you didn't change anything? Somewhere your script is trying to access 44 index of array where last index is 43. Either you are doing it directly (via array[44]), or you have somewhere loop with off-by-one error (like for(new i = 0; i <= sizeof array; ++i))