diff --git a/src/main/java/org/bukkit/Sound.java b/src/main/java/org/bukkit/Sound.java index 3f3c0ff5..fe19ed17 100644 --- a/src/main/java/org/bukkit/Sound.java +++ b/src/main/java/org/bukkit/Sound.java @@ -1273,6 +1273,12 @@ public abstract class Sound extends OldEnum implements Keyed { public static final Sound ENTITY_SPIDER_STEP = getSound("entity.spider.step"); public static final Sound ENTITY_SPLASH_POTION_BREAK = getSound("entity.splash_potion.break"); public static final Sound ENTITY_SPLASH_POTION_THROW = getSound("entity.splash_potion.throw"); + public static final Sound BLOCK_SPONGE_BREAK = getSound("block.sponge.break"); + public static final Sound BLOCK_SPONGE_FALL = getSound("block.sponge.fall"); + public static final Sound BLOCK_SPONGE_HIT = getSound("block.sponge.hit"); + public static final Sound BLOCK_SPONGE_PLACE = getSound("block.sponge.place"); + public static final Sound BLOCK_SPONGE_STEP = getSound("block.sponge.step"); + public static final Sound BLOCK_SPONGE_ABSORB = getSound("block.sponge.absorb"); public static final Sound ITEM_SPYGLASS_USE = getSound("item.spyglass.use"); public static final Sound ITEM_SPYGLASS_STOP_USING = getSound("item.spyglass.stop_using"); public static final Sound ENTITY_SQUID_AMBIENT = getSound("entity.squid.ambient"); @@ -1417,6 +1423,11 @@ public abstract class Sound extends OldEnum implements Keyed { public static final Sound BLOCK_WET_GRASS_HIT = getSound("block.wet_grass.hit"); public static final Sound BLOCK_WET_GRASS_PLACE = getSound("block.wet_grass.place"); public static final Sound BLOCK_WET_GRASS_STEP = getSound("block.wet_grass.step"); + public static final Sound BLOCK_WET_SPONGE_BREAK = getSound("block.wet_sponge.break"); + public static final Sound BLOCK_WET_SPONGE_FALL = getSound("block.wet_sponge.fall"); + public static final Sound BLOCK_WET_SPONGE_HIT = getSound("block.wet_sponge.hit"); + public static final Sound BLOCK_WET_SPONGE_PLACE = getSound("block.wet_sponge.place"); + public static final Sound BLOCK_WET_SPONGE_STEP = getSound("block.wet_sponge.step"); public static final Sound ENTITY_WITCH_AMBIENT = getSound("entity.witch.ambient"); public static final Sound ENTITY_WITCH_CELEBRATE = getSound("entity.witch.celebrate"); public static final Sound ENTITY_WITCH_DEATH = getSound("entity.witch.death"); diff --git a/src/main/java/org/bukkit/attribute/Attribute.java b/src/main/java/org/bukkit/attribute/Attribute.java index 542b87d3..e23c4d1a 100644 --- a/src/main/java/org/bukkit/attribute/Attribute.java +++ b/src/main/java/org/bukkit/attribute/Attribute.java @@ -60,7 +60,7 @@ public abstract class Attribute extends OldEnum implements Keyed { /** * Maximum absorption of an Entity. */ - MAX_ABSORPTION("generic.max_absorption"), + public static final Attribute GENERIC_MAX_ABSORPTION = getAttribute("generic.max_absorption"); /** * Strength with which a horse will jump. */