From 999ff2256c1384a5ca4db2e7069207127404cfff Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Fri, 7 Jun 2024 12:59:25 +1000 Subject: Backend: Use event.cancel() over event.isCanceled = true for LorenzEvents (#1915) --- .../skyhanni/features/event/diana/InquisitorWaypointShare.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/event') 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) { -- cgit