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:
Ursprung
43bba317e5
Commit
bc31e4c20a
@ -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);
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren