You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: v1_21/src/main/java/me/aleksilassila/litematica/printer/v1_21/config/PrinterConfig.java
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,8 @@ public static PrinterConfig getInstance() {
58
58
publicstaticfinalConfigBooleanPRINTER_ALLOW_NONE_EXACT_STATES = newConfigBoolean("printerAllowNoneExactStates", false, "Allow none exact block states to be placed.\nThis includes things like lichen, muchroom stems, etc.");
59
59
publicstaticfinalConfigBooleanPRINTER_DISABLE_IN_GUIS = newConfigBoolean("printerDisableInGuis", true, "Disable the printer in GUIs.");
60
60
publicstaticfinalConfigBooleanPRINTER_AIRPLACE = newConfigBoolean("printerAirPlace", false, "Place blocks in the air.");
61
+
publicstaticfinalConfigBooleanPRINTER_AIRPLACE_ONLY = newConfigBoolean("printerAirPlaceOnly", false, "Attempt to air place only when air place is enabled.");
62
+
publicstaticfinalConfigBooleanPRINTER_AIRPLACE_OFFHAND_SLOT_SUPPRESS = newConfigBoolean("printerAirPlaceOffhandSlotSuppress", true, "Suppress off-hand slot updates when air placing. Turn off when there are de-sync issues in the off-hand slot.");
61
63
publicstaticfinalConfigDoublePRINTER_AIRPLACE_RANGE = newConfigDouble("printerAirPlaceRange", 5, 0, 10, "Range at which the printer can air place at");
62
64
publicstaticfinalConfigBooleanPRINTER_AIRPLACE_FLOATING_ONLY = newConfigBoolean("printerAirPlaceFloatingOnly", false, "Only attempt to air place if the block position is surrounded by air.");
63
65
publicstaticfinalConfigIntegerPRINTER_MIN_INACTIVE_TIME_AIR_PLACE = newConfigInteger("printerMinInactiveTimeAirPlace", 5, "Minimum time in ticks to wait before placing a block in the air.");
@@ -89,6 +91,8 @@ public ImmutableList<IConfigBase> getOptions() {
Copy file name to clipboardExpand all lines: v1_21/src/main/java/me/aleksilassila/litematica/printer/v1_21/implementation/actions/InteractActionImpl.java
0 commit comments