1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-06 22:56:41 +02:00

Update to 1.6.2, adds new potion effect types

This commit is contained in:
GunfighterJ
2013-07-08 19:22:38 -05:00
parent 96d8ea856a
commit 1447ee781b
3 changed files with 10 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ import org.yaml.snakeyaml.error.YAMLException;
public class Essentials extends JavaPlugin implements IEssentials
{
public static final int BUKKIT_VERSION = 2794;
public static final int BUKKIT_VERSION = 2808;
private static final Logger LOGGER = Logger.getLogger("Minecraft");
private transient ISettings settings;
private final transient TNTExplodeListener tntListener = new TNTExplodeListener(this);
@@ -370,7 +370,7 @@ public class Essentials extends JavaPlugin implements IEssentials
BlockCommandSender bsender = (BlockCommandSender)sender;
bSenderBlock = bsender.getBlock();
}
if (bSenderBlock != null)
{
Bukkit.getLogger().log(Level.INFO, "CommandBlock at {0},{1},{2} issued server command: /{3} {4}", new Object[]

View File

@@ -100,6 +100,14 @@ public class Potions
POTIONS.put("wither", PotionEffectType.WITHER);
ALIASPOTIONS.put("decay", PotionEffectType.WITHER);
POTIONS.put("healthboost", PotionEffectType.HEALTH_BOOST);
ALIASPOTIONS.put("boost", PotionEffectType.HEALTH_BOOST);
POTIONS.put("absorption", PotionEffectType.ABSORPTION);
ALIASPOTIONS.put("absorb", PotionEffectType.ABSORPTION);
POTIONS.put("saturation", PotionEffectType.SATURATION);
}
public static PotionEffectType getByName(String name)

Binary file not shown.