Greetings I am new to modding, but I am a programmer by trade, so I am sure I am just missing something obvious. I have taken an existing mod and modified it slightly to better suit my needs. I changed an array property (hidden) from 20 to 50, but when I do a length I get 20 not 50 I changed
WakkaActors = new WakkaActorAlias[20]To
WakkaActors = new WakkaActorAlias[50]But this returns
Debug.Notification("Array Length : " + WakkaActors.Length)20, not 50. Whats also strange is that I get no errors when assigning values above 19, so I think internally the array has changed size.