Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.garsooon</groupId>
<artifactId>CustomMessages</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>

<packaging>jar</packaging>

Expand Down
6 changes: 3 additions & 3 deletions src/main/java/org/garsooon/custommessages/CustomMessages.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ public void onEnable() {
loadBlacklist();

PluginManager pm = getServer().getPluginManager();
pm.registerEvent(Event.Type.PLAYER_JOIN, playerListener, Event.Priority.Normal, this);
pm.registerEvent(Event.Type.PLAYER_QUIT, playerListener, Event.Priority.Normal, this);
pm.registerEvent(Event.Type.PLAYER_KICK, playerListener, Event.Priority.Normal, this);
pm.registerEvent(Event.Type.PLAYER_JOIN, playerListener, Event.Priority.Highest, this);
pm.registerEvent(Event.Type.PLAYER_QUIT, playerListener, Event.Priority.Highest, this);
pm.registerEvent(Event.Type.PLAYER_KICK, playerListener, Event.Priority.Highest, this);

getServer().getLogger().info("[CustomMessages] Plugin enabled!");
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CustomMessages
version: 1.0.1
version: 1.0.2
main: org.garsooon.custommessages.CustomMessages
author: Garsooon

Expand Down