mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-15 14:13:56 +01:00
Changed event enumeration
By: durron597 <martin.jared@gmail.com>
This commit is contained in:
parent
4e456dc092
commit
ee50ed0ba6
1 changed files with 6 additions and 4 deletions
|
@ -77,12 +77,14 @@ public abstract class Event {
|
||||||
* Block Events
|
* Block Events
|
||||||
*/
|
*/
|
||||||
BLOCK_DAMAGED (Category.BLOCK),
|
BLOCK_DAMAGED (Category.BLOCK),
|
||||||
|
BLOCK_FLOW (Category.BLOCK),
|
||||||
|
BLOCK_IGNITE (Category.BLOCK),
|
||||||
|
BLOCK_PHYSICS (Category.BLOCK),
|
||||||
BLOCK_PLACED (Category.BLOCK),
|
BLOCK_PLACED (Category.BLOCK),
|
||||||
BLOCK_RIGHTCLICKED (Category.BLOCK),
|
BLOCK_RIGHTCLICKED (Category.BLOCK),
|
||||||
BLOCK_PHYSICS (Category.BLOCK),
|
REDSTONE_CHANGE (Category.BLOCK);
|
||||||
REDSTONE_CHANGE (Category.BLOCK),
|
|
||||||
BLOCK_IGNITE (Category.BLOCK),
|
|
||||||
BLOCK_FLOW (Category.BLOCK);
|
|
||||||
/**
|
/**
|
||||||
* Item Events
|
* Item Events
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue