1
0
Fork 0

PlayerEditor: fixed players not being saved

This commit is contained in:
kauron 2015-07-21 00:52:26 +02:00
parent f4d88a47e2
commit 8c11be5cdd

View file

@ -124,8 +124,8 @@ public class PlayerEditor extends ActionBarActivity {
if (!atk[i].getText().toString().isEmpty()) if (!atk[i].getText().toString().isEmpty())
atkInts[i] = Integer.parseInt(atk[i].getText().toString()); atkInts[i] = Integer.parseInt(atk[i].getText().toString());
boolean validAtk = true; boolean validAtk = true;
for (int i : atkInts) for (int i = Player.STR; i <= Player.CHA; i++)
if (i == 0) { if (atkInts[i] == 0) {
validAtk = false; validAtk = false;
break; break;
} }