sender.sendMessage("There is still an animation loaded in the editor. You have to close it first with /ceditclose");
return true;
}
File file = new File(cinema.getExtDataFolder(),args[0]);
if(file.exists()){
CinemaEditor cinemaEditor = new CinemaEditor(cinema, new CinemaFile(file), sender);
cinema.setCinemaEditor(cinemaEditor);
sender.sendMessage("Animation \""+args[0]+"\" loaded");
}else{
sender.sendMessage("Animation \""+args[0]+"\" does not exist");
}