JSONObject creature = ((JSONArray) creatures).getJSONObject(i);
model.creatures.add("" + creature.getInt("id"));
}
nifty.gotoScreen("creature_select");
Screen screen = nifty.getScreen("creature_select");
DropDown niftyControl = screen.findNiftyControl("dropDown", DropDown.class);
niftyControl.clear();
niftyControl.addAllItems(model.creatures);
}
}