File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
common/src/main/kotlin/com/lambda/interaction/request/placing Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ import com.lambda.event.events.MovementEvent
2323import com.lambda.event.events.TickEvent
2424import com.lambda.event.events.UpdateManagerEvent
2525import com.lambda.event.listener.SafeListener.Companion.listen
26+ import com.lambda.interaction.construction.context.PlaceContext
2627import com.lambda.interaction.request.RequestHandler
27- import com.lambda.interaction.request.breaking.BreakManager.BreakInfo
2828import com.lambda.interaction.request.hotbar.HotbarRequest
2929import com.lambda.interaction.request.rotation.RotationManager.onRotate
3030import com.lambda.module.modules.client.TaskFlowModule
@@ -34,9 +34,9 @@ import com.lambda.util.collections.LimitedDecayQueue
3434import net.minecraft.util.Hand
3535
3636object PlaceManager : RequestHandler<PlaceRequest>() {
37- private val pendingInteractions = LimitedDecayQueue <BreakInfo >(
37+ private val pendingInteractions = LimitedDecayQueue <PlaceContext >(
3838 TaskFlowModule .build.maxPendingInteractions, TaskFlowModule .build.interactionTimeout * 50L
39- ) { info(" ${it::class .simpleName} at ${it.context. expectedPos.toShortString()} timed out" ) }
39+ ) { info(" ${it::class .simpleName} at ${it.expectedPos.toShortString()} timed out" ) }
4040
4141 init {
4242 listen<TickEvent .Pre >(Int .MIN_VALUE ) {
You can’t perform that action at this time.
0 commit comments