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

This commit is contained in:
X1337X 2011-08-11 22:56:24 +02:00
parent 43bba317e5
commit bc31e4c20a

View File

@ -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);
}