diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-06-07 12:59:25 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-07 12:59:25 +1000 |
commit | 999ff2256c1384a5ca4db2e7069207127404cfff (patch) | |
tree | 0627f6370b1f94d2697ed1af7827046e75c880c9 /src/main/java/at/hannibal2/skyhanni/features/event | |
parent | 0d4efbd22a8ee629fe2f504fe3aa7acb78a66a2e (diff) | |
download | skyhanni-999ff2256c1384a5ca4db2e7069207127404cfff.tar.gz skyhanni-999ff2256c1384a5ca4db2e7069207127404cfff.tar.bz2 skyhanni-999ff2256c1384a5ca4db2e7069207127404cfff.zip |
Backend: Use event.cancel() over event.isCanceled = true for LorenzEvents (#1915)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/event')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/event/diana/InquisitorWaypointShare.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/diana/InquisitorWaypointShare.kt b/src/main/java/at/hannibal2/skyhanni/features/event/diana/InquisitorWaypointShare.kt index ac662e3e9..238b951c2 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/event/diana/InquisitorWaypointShare.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/event/diana/InquisitorWaypointShare.kt @@ -232,13 +232,13 @@ object InquisitorWaypointShare { partyInquisitorCheckerPattern.matchMatcher(message) { if (detectFromChat()) { - event.isCanceled = true + event.cancel() } } partyOnlyCoordsPattern.matchMatcher(message) { if (detectFromChat()) { - event.isCanceled = true + event.cancel() } } diedPattern.matchMatcher(message) { |