3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-10-01 19:30:06 +02:00

clipboard brush is supposed to be -o not -p

Dieser Commit ist enthalten in:
dordsor21 2021-07-23 11:27:14 +01:00
Ursprung 8e16acde1d
Commit ad102ab7a9
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 1E53E88969FFCF0B

Datei anzeigen

@ -727,7 +727,7 @@ public class BrushCommands {
name = "clipboard", name = "clipboard",
desc = "@Deprecated use instead: `/br copypaste`)", desc = "@Deprecated use instead: `/br copypaste`)",
descFooter = "Choose the clipboard brush.\n" descFooter = "Choose the clipboard brush.\n"
+ "Without the -p flag, the paste will appear centered at the target location. " + "Without the -o flag, the paste will appear centered at the target location. "
+ "With the flag, then the paste will appear relative to where you had " + "With the flag, then the paste will appear relative to where you had "
+ "stood relative to the copied area when you copied it." + "stood relative to the copied area when you copied it."
) )
@ -736,7 +736,7 @@ public class BrushCommands {
public void clipboardBrush(Player player, LocalSession session, public void clipboardBrush(Player player, LocalSession session,
@Switch(name = 'a', desc = "Don't paste air from the clipboard") @Switch(name = 'a', desc = "Don't paste air from the clipboard")
boolean ignoreAir, boolean ignoreAir,
@Switch(name = 'p', desc = "Paste starting at the target location, instead of centering on it") @Switch(name = 'o', desc = "Paste starting at the target location, instead of centering on it")
boolean usingOrigin, boolean usingOrigin,
@Switch(name = 'e', desc = "Paste entities if available") @Switch(name = 'e', desc = "Paste entities if available")
boolean pasteEntities, boolean pasteEntities,