From 0ed7f6e18d9083e05a8c04506ed4dbe107cf607c Mon Sep 17 00:00:00 2001 From: sovde <10354869+sovdeeth@users.noreply.github.com> Date: Thu, 14 Mar 2024 22:41:12 +0100 Subject: [PATCH] Fix merge mistakes I need to stop using the browser for merge conflicts --- src/main/java/ch/njol/skript/structures/StructEvent.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/ch/njol/skript/structures/StructEvent.java b/src/main/java/ch/njol/skript/structures/StructEvent.java index 2788460f08b..814571463ad 100644 --- a/src/main/java/ch/njol/skript/structures/StructEvent.java +++ b/src/main/java/ch/njol/skript/structures/StructEvent.java @@ -140,13 +140,14 @@ public EventPriority getPriority() { @Nullable public ListeningBehavior getListenerBehavior() { return behavior; + } - /** + /** * Clears all event-specific data from this instance. */ public void clear() { priority = null; - behavior = null; + behavior = null; } }