Revert "Allow build organizations to be defined in XML"

This reverts commit 1657c5f971fb1fd218fcc34ee8db1422473ae098.
This commit is contained in:
Seth Winston 2017-08-20 21:17:57 -04:00
parent f3fcbba541
commit 6039d545e3
1 changed files with 0 additions and 14 deletions

View File

@ -232,20 +232,6 @@ public class MapCommands implements Commands {
}
}
List<Organization> organizations = mapInfo.getNamedOrganizations();
if(organizations.size() == 1) {
audience.sendMessage(new Component(
mapInfoLabel("command.map.mapInfo.organizationSingular"),
formatContribution(organizations.get(0))
));
} else if(!organizations.isEmpty()) {
audience.sendMessage(mapInfoLabel("command.map.mapInfo.organizationPlural"));
for(Contributor organization : organizations) {
audience.sendMessage(new Component(" ").extra(formatContribution(organization)));
}
}
if(mapInfo.rules.size() > 0) {
audience.sendMessage(mapInfoLabel("command.map.mapInfo.rules"));