Fixed //drawsel

This commit is contained in:
Matthew Miller
2019-04-28 17:05:37 +10:00
parent 6e016a66f0
commit 32d4b36419
4 changed files with 4 additions and 40 deletions

View File

@@ -308,7 +308,7 @@ public class SchematicCommands {
return res;
});
String pageCommand = actor.isPlayer() ? "/schem list -p %page%" + (oldFirst ? " -d" : newFirst ? " -n" : "") : null;
String pageCommand = actor.isPlayer() ? "//schem list -p %page%" + (oldFirst ? " -d" : newFirst ? " -n" : "") : null;
PaginationBox paginationBox = new SchematicPaginationBox(worldEdit.getConfiguration().saveDir, files, pageCommand);
actor.print(paginationBox.create(page));
}