Skip to content

Commit

Permalink
improved Constants
Browse files Browse the repository at this point in the history
  • Loading branch information
cyklon73 committed Oct 20, 2024
1 parent 8cab354 commit 699b87c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/main/java/de/cyklon/jevent/EventHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface EventHandler {
byte LOWEST = -2;
byte LOW = -1;
byte LOWEST = Byte.MIN_VALUE;
byte LOW = -100;
byte NORMAL = 0;
byte HIGH = 1;
byte HIGHEST = 2;
byte MONITOR = 3;
byte HIGH = 100;
byte HIGHEST = Byte.MAX_VALUE;

/**
* Define the priority of the event.
Expand Down

0 comments on commit 699b87c

Please sign in to comment.