From 93bb13478262de6d87b4f0eb7566a74e4e9a6804 Mon Sep 17 00:00:00 2001 From: Pierre Maurice Schwang Date: Sat, 17 Feb 2024 20:28:17 +0100 Subject: [PATCH] fix: return false if PLACE_VEHICLE and missing flag --- .../src/main/java/com/plotsquared/core/util/EventDispatcher.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java b/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java index b80029aad..e20957b28 100644 --- a/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java +++ b/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java @@ -551,6 +551,7 @@ public class EventDispatcher { ) ); } + return false; } default -> { }