@@ -18,7 +18,7 @@ public class AttributesSet implements Listener {
1818 Changes the attribute of the player to the Old Attack Speed (On Join)
1919 */
2020
21- @ EventHandler (priority = EventPriority .HIGHEST , ignoreCancelled = true )
21+ @ EventHandler (priority = EventPriority .HIGH , ignoreCancelled = true )
2222 public void onJoin (PlayerJoinEvent e ) {
2323 if (Config .get ().getBoolean ("combat.settings.old_pvp" )) {
2424 final Player player = e .getPlayer ();
@@ -42,7 +42,7 @@ public void onJoin(PlayerJoinEvent e) {
4242 Resets the attribute of the player to the New Attack Speed (On Leave)
4343 */
4444
45- @ EventHandler (priority = EventPriority .HIGHEST , ignoreCancelled = true )
45+ @ EventHandler (priority = EventPriority .HIGH , ignoreCancelled = true )
4646 public void onLeave (PlayerQuitEvent e ) {
4747 if (Config .get ().getBoolean ("combat.settings.old_pvp" )) {
4848 final Player player = e .getPlayer ();
@@ -58,7 +58,7 @@ public void onLeave(PlayerQuitEvent e) {
5858 Changes the attribute of the player to the Old Attack Speed (On World Change)
5959 */
6060
61- @ EventHandler (priority = EventPriority .HIGHEST , ignoreCancelled = true )
61+ @ EventHandler (priority = EventPriority .HIGH , ignoreCancelled = true )
6262 public void onWorldChange (PlayerChangedWorldEvent e ) {
6363 if (!Config .get ().getBoolean ("combat.settings.old_pvp" )) return ;
6464 final Player player = e .getPlayer ();
0 commit comments