}
@Override
void convert(Attributes attributes, Stack<PermissionContainer> stack) throws SAXException {
Config config = (Config) stack.peek();
Group group = new Group(getInt(attributes.getValue("id")), attributes.getValue("name"));
group.color = attributes.getValue("color").charAt(0);
if (attributes.getIndex("cooldown") >= 0) {
group.cooldown = getInt(attributes.getValue("cooldown"));
}
if (attributes.getIndex("warmup") >= 0) {