if(config.getKeys(path + ".actions") != null)
for(String ac : config.getKeys(path + ".actions")) {
ActionType acType = ActionType.valueOf(config.getString(path + ".actions." + ac + ".type"));
String acValue = config.getString(path + ".actions." + ac + ".value");
ActionRunStage acStage = ActionRunStage.valueOf(config.getString(path + ".actions." + ac + ".run-stage"));
actionList.add(new CommandItemAction(ac, acType, acValue, acStage));
}
String missingConsumableMessage = config.getString(path + ".consumable-message", "mech.command-items.need");