Hi all,
I've got a problem with this code;
What this should do is reset all the integers the user has in the UserInfo class. But this doesn't reset the second integer, that still is 2 after this code.
Can someone help me? Thanks
if (UserInfo.isStorageAvailable() ) { if (player != null) { for (int i = 0; i < 10; i++) { player.setInt(i, 0); player.store(); } } }