mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-09-18 21:45:12 +00:00
Update to Minecraft 1.8.3
This commit is contained in:
parent
1d2509b99f
commit
ca4fd8554d
2 changed files with 27 additions and 2 deletions
7
pom.xml
7
pom.xml
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue