3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 16:12:51 +02:00

Removed displacement argument from //move and //moveair (not yet implemented).

Dieser Commit ist enthalten in:
sk89q 2010-10-18 16:17:34 -07:00
Ursprung 86f2c67a35
Commit 5dc69ae325

Datei anzeigen

@ -692,11 +692,7 @@ public class WorldEdit {
// Replacement block argument
if (split.length > 3) {
if (split[3].equalsIgnoreCase("displace")) {
replace = null; // Displace
} else {
replace = getBlock(split[3]);
}
replace = getBlock(split[3]);
} else {
replace = new BaseBlock(0);
}