Skip to content

Commit 95fbfcc

Browse files
committed
removed unnecessary todos
1 parent 339f00d commit 95fbfcc

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

common/src/main/kotlin/com/lambda/interaction/request/breaking/BreakManager.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ object BreakManager : RequestHandler<BreakRequest>(
6666
TickEvent.Input.Pre,
6767
TickEvent.Input.Post,
6868
TickEvent.Player.Post,
69-
// ToDo: Post interact
7069
onOpen = { processRequest(activeRequest) }
7170
), PositionBlocking {
7271
private var primaryBreak: BreakInfo?

common/src/main/kotlin/com/lambda/interaction/request/hotbar/HotbarManager.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ object HotbarManager : RequestHandler<HotbarRequest>(
4242
TickEvent.Input.Pre,
4343
TickEvent.Input.Post,
4444
TickEvent.Player.Post,
45-
// ToDo: Post interact
4645
onClose = { checkResetSwap() }
4746
) {
4847
val serverSlot get() = runSafe {

common/src/main/kotlin/com/lambda/interaction/request/placing/PlaceManager.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ object PlaceManager : RequestHandler<PlaceRequest>(
6363
TickEvent.Input.Pre,
6464
TickEvent.Input.Post,
6565
TickEvent.Player.Post,
66-
// ToDo: Post interact
6766
onOpen = { activeRequest?.let { processRequest(it) } }
6867
), PositionBlocking {
6968
private var activeRequest: PlaceRequest? = null

common/src/main/kotlin/com/lambda/interaction/request/rotation/RotationManager.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ object RotationManager : RequestHandler<RotationRequest>(
5353
TickEvent.Input.Pre,
5454
TickEvent.Input.Post,
5555
TickEvent.Player.Post,
56-
// ToDo: Post interact
5756
) {
5857
var activeRotation = Rotation.ZERO
5958
var serverRotation = Rotation.ZERO

0 commit comments

Comments
 (0)