Skip to content

Commit

Permalink
fix improper default of mask in schematic command
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Nov 20, 2022
1 parent 964e261 commit 3504746
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -305,7 +305,7 @@ public void execute(final ScriptEntry scriptEntry) {
return;
}
try {
HashSet<Material> maskSet = new HashSet<>();
HashSet<Material> maskSet = null;
if (mask != null) {
String maskText = mask.asString();
maskSet = new HashSet<>();
Expand Down

0 comments on commit 3504746

Please sign in to comment.