diff --git a/overrides/scripts/multiblocks_expert.zs b/overrides/scripts/multiblocks_expert.zs index da6b5b2..f8c4069 100644 --- a/overrides/scripts/multiblocks_expert.zs +++ b/overrides/scripts/multiblocks_expert.zs @@ -89,7 +89,7 @@ val microverse_projector_advanced = Builder.start("mbt:microverse_projector_adva .where('G', ) .where('D', ) .where('V', ) - .where(' ', CTPredicate.getAir()) + .where(' ', CTPredicate.getAny()) .where("C", CTPredicate.states() | controller.autoAbilities(true, true, true, true, true, false, false)) .where('M', controller.autoAbilities(false, false, false, false, false, false, true)) // same as CTPredicate.abilities() .build(); @@ -187,7 +187,7 @@ val microverse_projector_advanced_ii = Builder.start("mbt:microverse_projector_a .where('S', controller.self()) .where('G', ) .where('V', ) - .where(' ', CTPredicate.getAir()) + .where(' ', CTPredicate.getAny()) .where('D', ) .where("C", CTPredicate.states() | controller.autoAbilities(true, true, true, true, true, false, false)) .where('M', controller.autoAbilities(false, false, false, false, false, false, true)) // same as CTPredicate.abilities() diff --git a/overrides/scripts/multiblocks_normal.zs b/overrides/scripts/multiblocks_normal.zs index 5ccf056..ee3cb3a 100644 --- a/overrides/scripts/multiblocks_normal.zs +++ b/overrides/scripts/multiblocks_normal.zs @@ -88,7 +88,7 @@ val microverse_projector_advanced = Builder.start("mbt:microverse_projector_adva .where('G', ) .where('D', ) .where('V', ) - .where(' ', CTPredicate.getAir()) + .where(' ', CTPredicate.getAny()) .where("C", CTPredicate.states() | controller.autoAbilities(true, true, true, true, true, false, false)) .where('M', controller.autoAbilities(false, false, false, false, false, false, true)) // same as CTPredicate.abilities() .build(); @@ -186,7 +186,7 @@ val microverse_projector_advanced_ii = Builder.start("mbt:microverse_projector_a .where('S', controller.self()) .where('G', ) .where('V', ) - .where(' ', CTPredicate.getAir()) + .where(' ', CTPredicate.getAny()) .where('D', ) .where("C", CTPredicate.states() | controller.autoAbilities(true, true, true, true, true, false, false)) .where('M', controller.autoAbilities(false, false, false, false, false, false, true)) // same as CTPredicate.abilities()