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),