Update Bukkit for Minecraft 1.6.2

By: Nate Mortensen <nate.richard.mortensen@gmail.com>
This commit is contained in:
Bukkit/Spigot 2013-07-07 22:31:48 -06:00
parent cd6af522b1
commit 74dfd2ceb7
2 changed files with 17 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.6.1-R0.1-SNAPSHOT</version>
<version>1.6.2-R0.1-SNAPSHOT</version>
<name>Bukkit</name>
<url>http://www.bukkit.org</url>

View File

@ -109,6 +109,22 @@ public abstract class PotionEffectType {
*/
public static final PotionEffectType WITHER = new PotionEffectTypeWrapper(20);
/**
* Increases the maximum health of an entity.
*/
public static final PotionEffectType HEALTH_BOOST = new PotionEffectTypeWrapper(21);
/**
* Increases the maximum health of an entity with health that cannot be
* regenerated, but is refilled every 30 seconds.
*/
public static final PotionEffectType ABSORPTION = new PotionEffectTypeWrapper(22);
/**
* Increases the food level of an entity each tick.
*/
public static final PotionEffectType SATURATION = new PotionEffectTypeWrapper(23);
private final int id;
protected PotionEffectType(int id) {