Pass the exception converter through more.

This commit is contained in:
Matthew Miller
2018-12-21 17:31:27 +10:00
parent ea30578781
commit 8d07877463
3 changed files with 16 additions and 6 deletions

View File

@ -112,7 +112,10 @@ public class WorldEditCommands {
if (args.hasFlag('p')) {
actor.checkPermission("worldedit.report.pastebin");
ActorCallbackPaste.pastebin(we.getSupervisor(), actor, result, "WorldEdit report: %s.report");
ActorCallbackPaste.pastebin(
we.getSupervisor(), actor, result, "WorldEdit report: %s.report",
WorldEdit.getInstance().getPlatformManager().getCommandManager().getExceptionConverter()
);
}
}