@Override
public void setDestination(JavaPlugin plugin, String dest) {
this.portals = new ArrayList<MVPortal>();
// If this class exists, then this plugin MUST exist!
MultiversePortals portalPlugin = (MultiversePortals) plugin.getServer().getPluginManager().getPlugin("Multiverse-Portals");
String[] split = dest.split(":");
// iterate over splits, split[0] = getIdentifier()
MVPortal portal;
for (int i = 1; i < split.length; i++)
if ((portal = portalPlugin.getPortalManager().getPortal(split[i])) != null)
this.portals.add(portal);
}