geforkt von Mirrors/FastAsyncWorldEdit
Removed the >, or <, from the over and underlay masks - command is now /mask >id,id,id
Dieser Commit ist enthalten in:
Ursprung
43bba317e5
Commit
bc31e4c20a
@ -496,7 +496,7 @@ public class WorldEdit {
|
|||||||
else if (component.charAt(0) == '>') {
|
else if (component.charAt(0) == '>') {
|
||||||
LocalWorld world = player.getWorld();
|
LocalWorld world = player.getWorld();
|
||||||
Set<Integer> set = new HashSet<Integer>();
|
Set<Integer> set = new HashSet<Integer>();
|
||||||
String ids = component.replaceAll(">,", "");
|
String ids = component.replaceAll(">", "");
|
||||||
if(ids.equalsIgnoreCase("*")){
|
if(ids.equalsIgnoreCase("*")){
|
||||||
current = new UnderOverlayMask(set,true,true);
|
current = new UnderOverlayMask(set,true,true);
|
||||||
}
|
}
|
||||||
@ -530,7 +530,7 @@ public class WorldEdit {
|
|||||||
Set<Integer> set = new HashSet<Integer>();
|
Set<Integer> set = new HashSet<Integer>();
|
||||||
|
|
||||||
|
|
||||||
String ids = component.replaceAll("<,", "");
|
String ids = component.replaceAll("<", "");
|
||||||
if(ids.equalsIgnoreCase("*")){
|
if(ids.equalsIgnoreCase("*")){
|
||||||
current = new UnderOverlayMask(set,false,true);
|
current = new UnderOverlayMask(set,false,true);
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren