Using the new user data.
Got this error:
java.lang.ArrayIndexOutOfBoundsException: 10
at greenfoot.UserInfo.getInt(UserInfo.java:115)
at gameScreen.<init>(gameScreen.java:130)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at greenfoot.core.Simulation.newInstance(Simulation.java:578)
at greenfoot.platforms.ide.WorldHandlerDelegateIDE$3.run(WorldHandlerDelegateIDE.java:408)
at greenfoot.core.Simulation.runQueuedTasks(Simulation.java:465)
at greenfoot.core.Simulation.maybePause(Simulation.java:279)
at greenfoot.core.Simulation.runContent(Simulation.java:210)
at greenfoot.core.Simulation.run(Simulation.java:203)
I guess that's because I'm running out of ints that I can store. How do I increase the capacity?

