本文整理匯總了Java中org.bukkit.Material.SOUL_SAND屬性的典型用法代碼示例。如果您正苦於以下問題:Java Material.SOUL_SAND屬性的具體用法?Java Material.SOUL_SAND怎麽用?Java Material.SOUL_SAND使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.bukkit.Material
的用法示例。
在下文中一共展示了Material.SOUL_SAND屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: checkXZSpeed
public static void checkXZSpeed(Player player, double x, double z) {
if(player.getVehicle() == null && !player.isFlying() && !Flight.movingExempt.containsKey(player)) {
String reason = "";
double max = 0.25;
if(player.getLocation().getBlock().getType() == Material.SOUL_SAND) {
if(player.isSprinting()) {
reason = "on soulsand while sprinting";
max = 0.2;
} else if(player.hasPotionEffect(PotionEffectType.SPEED)) {
max = 0.16;
reason = "on soulsand with speed pot";
} else {
max = 0.13;
}
} else if(player.hasPotionEffect(PotionEffectType.SPEED)) {
if(player.isSprinting()) {
reason = "with speed pot while sprinting";
max = 0.95;
} else {
reason = "with speed pot";
max = 0.7;
}
} else if(player.isSprinting()) {
max = 0.65;
reason = "while sprinting";
}
float speed = player.getWalkSpeed();
max += speed > 0 ? player.getWalkSpeed() - 0.2f : 0;
if(x > max || z > max) {
speedViolation.put(player, speedViolation.containsKey(player) ? speedViolation.get(player) + 1 : 1);
if(speedViolation.get(player) > MagicNumbers.SPEED_MAX) {
for(Player pla : DynamicAC.instance.onlinestaff) {
pla.sendMessage(ChatColor.RED + "[DAC] " + ChatColor.GREEN + player.getName() + " failed " +
"Speed " + reason + "!");
}
DACManager.getUserManager().incrementUser(DACManager.getUserManager().getUser(player.getName()),
"Speed " + reason);
}
} else {
speedViolation.put(player, 0);
}
}
}