mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-03 23:07:40 +01:00
Update Bukkit for Minecraft 1.6.2
By: Nate Mortensen <nate.richard.mortensen@gmail.com>
This commit is contained in:
parent
cd6af522b1
commit
74dfd2ceb7
@ -2,7 +2,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.bukkit</groupId>
|
<groupId>org.bukkit</groupId>
|
||||||
<artifactId>bukkit</artifactId>
|
<artifactId>bukkit</artifactId>
|
||||||
<version>1.6.1-R0.1-SNAPSHOT</version>
|
<version>1.6.2-R0.1-SNAPSHOT</version>
|
||||||
<name>Bukkit</name>
|
<name>Bukkit</name>
|
||||||
<url>http://www.bukkit.org</url>
|
<url>http://www.bukkit.org</url>
|
||||||
|
|
||||||
|
@ -109,6 +109,22 @@ public abstract class PotionEffectType {
|
|||||||
*/
|
*/
|
||||||
public static final PotionEffectType WITHER = new PotionEffectTypeWrapper(20);
|
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;
|
private final int id;
|
||||||
|
|
||||||
protected PotionEffectType(int id) {
|
protected PotionEffectType(int id) {
|
||||||
|
Loading…
Reference in New Issue
Block a user