@EventHandler
public void onDrinky(PlayerItemConsumeEvent e) {
final Player p = e.getPlayer();
final ItemStack hand = e.getItem();
if (hand == null || hand.getType() != Material.POTION || hand.getDurability() != (short) 0 || !RUtils.isInInfectedWorld(p))
return;
PConfManager pcm = PConfManager.getPConfManager(p);
float thirst = pcm.getFloat("thirst");
if (!pcm.isSet("thirst")) thirst = 1F;
if (thirst >= 1F) {
e.setCancelled(true); // let's not waste water bottles
return;
}
thirst += Config.thirstRestorePercent / 100F;
if (thirst > 1F) thirst = 1F;
pcm.set("thirst", thirst);
pcm.set("thirstSaturation", (float) Config.thirstSaturationMax);
p.setExp(thirst);
}
ThirstListener.java 文件源码
java
阅读 33
收藏 0
点赞 0
评论 0
项目:RoyalSurvivors
作者:
评论列表
文章目录