Remove unnecessary game mode check in NoFall.

This commit is contained in:
asofold 2012-08-13 16:56:37 +02:00
parent 204e416a96
commit f515f57231

View File

@ -7,7 +7,6 @@ import net.minecraft.server.DamageSource;
import net.minecraft.server.EntityPlayer;
import net.minecraft.server.Packet10Flying;
import org.bukkit.GameMode;
import org.bukkit.craftbukkit.entity.CraftPlayer;
import org.bukkit.entity.Player;
@ -52,14 +51,6 @@ public class NoFall extends Check {
final MovingConfig cc = MovingConfig.getConfig(player);
final MovingData data = MovingData.getData(player);
// Exempt players with creative mode from checks.
if (player.getGameMode() == GameMode.CREATIVE){
// Reset his fall distance.
data.noFallFallDistance = data.noFallNewFallDistance = 0D;
data.noFallVL *= 0.95D;
return;
}
// If the player has just started falling, is falling into a liquid, in web or is on a ladder.
if (to.isInLiquid() || to.isInWeb() || to.isOnLadder())
// Reset his fall distance.