File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
common/src/main/kotlin/com/lambda/interaction/request/breaking Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ object BreakManager : RequestHandler<BreakRequest>(
136136 }
137137
138138 // ToDo: Dependent on the tracked data order. When set stack is called after position it wont work
139- listen<EntityEvent .EntityUpdate >(priority = Int .MIN_VALUE + 1 ) {
139+ listen<EntityEvent .Update >(priority = Int .MIN_VALUE + 1 ) {
140140 if (it.entity !is ItemEntity ) return @listen
141141
142142 breakInfos
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ object BrokenBlockHandler {
8888 }
8989 }
9090
91- listen<EntityEvent .EntityUpdate >(priority = Int .MIN_VALUE + 1 ) {
91+ listen<EntityEvent .Update >(priority = Int .MIN_VALUE + 1 ) {
9292 if (it.entity !is ItemEntity ) return @listen
9393 pendingBreaks
9494 .firstOrNull { info -> matchesBlockItem(info, it.entity) }
You can’t perform that action at this time.
0 commit comments