mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
Removed the >, or <, from the over and underlay masks - command is now /mask >id,id,id
This commit is contained in:
parent
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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user