3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-05 11:00:05 +01:00

Removed the >, or <, from the over and underlay masks - command is now /mask >id,id,id

Dieser Commit ist enthalten in:
X1337X 2011-08-11 22:56:24 +02:00
Ursprung 43bba317e5
Commit bc31e4c20a

Datei anzeigen

@ -496,7 +496,7 @@ public class WorldEdit {
else if (component.charAt(0) == '>') {
LocalWorld world = player.getWorld();
Set<Integer> set = new HashSet<Integer>();
String ids = component.replaceAll(">,", "");
String ids = component.replaceAll(">", "");
if(ids.equalsIgnoreCase("*")){
current = new UnderOverlayMask(set,true,true);
}
@ -530,7 +530,7 @@ public class WorldEdit {
Set<Integer> set = new HashSet<Integer>();
String ids = component.replaceAll("<,", "");
String ids = component.replaceAll("<", "");
if(ids.equalsIgnoreCase("*")){
current = new UnderOverlayMask(set,false,true);
}