Preset objects/attributes being cleared. Why?
Simple example:
dummy = new DummyBot();
dummy.prePogaInit(this);
dummy.testInt = 5;
BotThreadRunner runner = new BotThreadRunner(dummy);
Thread thread = new Thread(runner);
thread.start();
and then in the bots logic() method following:
System.out.println(testInt);
will give 0 and not 5 in output because the value has never been set.