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
val renders by setting("Render", false).group(Group.Render)
77
-
val avoidDesync by setting("Avoid Desync", true, "Cancels incoming inventory update packets if they match previous actions").group(Group.Debug)
78
-
val desyncTimeout by setting("Desync Timeout", 30, 1..30, 1, unit =" ticks", description ="Time to store previous inventory actions before dropping the cache") { avoidDesync }.group(Group.Debug)
79
-
val showAllEntries by setting("Show All Entries", false, "Show all entries in the task tree").group(Group.Debug)
80
-
val shrinkFactor by setting("Shrink Factor", 0.001, 0.0..1.0, 0.001).group(Group.Debug)
81
-
val ignoreItemDropWarnings by setting("Ignore Drop Warnings", false, "Hides the item drop warnings from the break manager").group(Group.Debug)
82
-
val verboseDebug by setting("Verbose Debug", false, "Prints more, and more detailed, debug logs").group(Group.Debug)
val message ="${info.type}${info::class.simpleName} at ${info.context.blockPos.toShortString()} timed out with cached state ${info.context.cachedState}"
63
64
if (verboseDebug) this@BrokenBlockHandler.warn(message)
64
-
} elseif (!DEFAULT.ignoreItemDropWarnings) {
65
+
} elseif (!Client.ignoreItemDropWarnings) {
65
66
val message ="${info.type}${info::class.simpleName}'s item drop at ${info.context.blockPos.toShortString()} timed out"
66
67
if (verboseDebug) this@BrokenBlockHandler.warn(message)
val clientSounds by setting("Client Sounds", true, "Plays sounds when certain actions are performed with lambda. Toggling modules, for example").group(Group.General)
37
+
val buildTaskRenders by setting("Build Task Renders", false, "Displays renders from some build sim results generated from the build task").group(Group.General)
38
+
val avoidInventoryDesync by setting("Avoid Inventory Desync", true, "Cancels incoming inventory update packets if they match previous actions").group(Group.General)
39
+
val desyncTimeout by setting("Desync Timeout", 30, 1..30, 1, unit =" ticks", description ="Time to store previous inventory actions before dropping the cache") { avoidInventoryDesync }.group(Group.General)
40
+
val scanShrinkFactor by setting("Scan Shrink Factor", 0.001, 0.0..1.0, 0.001).group(Group.General)
41
+
val showAllEntries by setting("Show All Entries", false, "Show all entries in the task tree").group(Group.Debug)
42
+
val ignoreItemDropWarnings by setting("Ignore Drop Warnings", false, "Hides the item drop warnings from the break manager").group(Group.Debug)
43
+
val verboseDebug by setting("Verbose Debug", false, "Prints more, and more detailed, debug logs").group(Group.Debug)
44
+
45
+
@Volatile
46
+
var drawables = listOf<Drawable>()
47
+
48
+
init {
49
+
tickedRenderer("Client Ticked Renderer") {
50
+
if (buildTaskRenders) drawables.forEach { with(it) { render() } }
0 commit comments