From 89c3cd3c56c912e8367693d4a1c3cba2f3f818c2 Mon Sep 17 00:00:00 2001 From: MiniDay <372403923@qq.com> Date: Mon, 13 Feb 2023 23:02:40 +0800 Subject: [PATCH] =?UTF-8?q?docs(common):=20=E6=9B=B4=E6=96=B0=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mc/plugin/ball/common/listener/ListenerPriority.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hamster-ball-common/src/main/java/cn/hamster3/mc/plugin/ball/common/listener/ListenerPriority.java b/hamster-ball-common/src/main/java/cn/hamster3/mc/plugin/ball/common/listener/ListenerPriority.java index dc6f958..c589478 100644 --- a/hamster-ball-common/src/main/java/cn/hamster3/mc/plugin/ball/common/listener/ListenerPriority.java +++ b/hamster-ball-common/src/main/java/cn/hamster3/mc/plugin/ball/common/listener/ListenerPriority.java @@ -4,7 +4,7 @@ package cn.hamster3.mc.plugin.ball.common.listener; public enum ListenerPriority { /** - * Event call is of very low importance and should be ran first, to allow + * Event call is of very low importance and should be run first, to allow * other plugins to further customise the outcome */ LOWEST(0), @@ -13,7 +13,7 @@ public enum ListenerPriority { */ LOW(1), /** - * Event call is neither important nor unimportant, and may be ran + * Event call is neither important nor unimportant, and may be run * normally */ NORMAL(2),