mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-12-21 04:49:51 +08:00
Fix author/name swap in //schem share.
This commit is contained in:
parent
8e5020fd8a
commit
76147474d8
@ -428,8 +428,8 @@ private static class SchematicShareTask extends SchematicOutputTask<Consumer<Act
|
||||
public Consumer<Actor> call() throws Exception {
|
||||
ClipboardShareMetadata metadata = new ClipboardShareMetadata(
|
||||
format,
|
||||
this.actor.getName(),
|
||||
name == null ? actor.getName() + "-" + System.currentTimeMillis() : name
|
||||
name == null ? actor.getName() + "-" + System.currentTimeMillis() : name,
|
||||
this.actor.getName()
|
||||
);
|
||||
|
||||
return destination.share(metadata, this::writeToOutputStream);
|
||||
|
Loading…
Reference in New Issue
Block a user