mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-10 17:52:02 -07:00
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<groupId>org.bukkit</groupId>
|
<groupId>org.bukkit</groupId>
|
||||||
<artifactId>bukkit</artifactId>
|
<artifactId>bukkit</artifactId>
|
||||||
<version>1.8-R0.1-SNAPSHOT</version>
|
<version>1.8.3-R0.1-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>Bukkit</name>
|
<name>Bukkit</name>
|
||||||
@@ -65,6 +65,11 @@
|
|||||||
<version>17.0</version>
|
<version>17.0</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.code.gson</groupId>
|
||||||
|
<artifactId>gson</artifactId>
|
||||||
|
<version>2.2.4</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.avaje</groupId>
|
<groupId>org.avaje</groupId>
|
||||||
<artifactId>ebean</artifactId>
|
<artifactId>ebean</artifactId>
|
||||||
|
@@ -37,7 +37,27 @@ public enum Statistic {
|
|||||||
ENTITY_KILLED_BY(Type.ENTITY),
|
ENTITY_KILLED_BY(Type.ENTITY),
|
||||||
TIME_SINCE_DEATH,
|
TIME_SINCE_DEATH,
|
||||||
TALKED_TO_VILLAGER,
|
TALKED_TO_VILLAGER,
|
||||||
TRADED_WITH_VILLAGER;
|
TRADED_WITH_VILLAGER,
|
||||||
|
CAKE_SLICES_EATEN,
|
||||||
|
CAULDRON_FILLED,
|
||||||
|
CAULDRON_USED,
|
||||||
|
ARMOR_CLEANED,
|
||||||
|
BANNER_CLEANED,
|
||||||
|
BREWINGSTAND_INTERACTION,
|
||||||
|
BEACON_INTERACTION,
|
||||||
|
DROPPER_INSPECTED,
|
||||||
|
HOPPER_INSPECTED,
|
||||||
|
DISPENSER_INSPECTED,
|
||||||
|
NOTEBLOCK_PLAYED,
|
||||||
|
NOTEBLOCK_TUNED,
|
||||||
|
FLOWER_POTTED,
|
||||||
|
TRAPPED_CHEST_TRIGGERED,
|
||||||
|
ENDERCHEST_OPENED,
|
||||||
|
ITEM_ENCHANTED,
|
||||||
|
RECORD_PLAYED,
|
||||||
|
FURNACE_INTERACTION,
|
||||||
|
CRAFTING_TABLE_INTERACTION,
|
||||||
|
CHEST_OPENED;
|
||||||
|
|
||||||
private final Type type;
|
private final Type type;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user