|
Re: Initialization Error
Thanks for the write-up! We took a second look at the code, and pretty much found the same thing, with Shooter extending the main file, and then having the main file referencing shooter methods, thereby breaking it. So we went (I believe it is on the GitHub at this point), and used the "this" pointer to make it so we can access the variables of the main class in the Shooter class. So, we fixed it! Thank you for your input!
__________________
Code:
while (life){
frcObsession = true;
obs.ProgramAndObsess();
}
if (!life) life = true;
|