CraftBukkit comment fixes

This commit is contained in:
Wesley Wolfe
2012-09-14 00:03:47 -05:00
committed by EvilSeph
parent 4b1f6aff3f
commit cebc8cffec
10 changed files with 16 additions and 20 deletions

View File

@@ -2,7 +2,6 @@ package net.minecraft.server;
// CraftBukkit start
import org.bukkit.Bukkit;
import org.bukkit.craftbukkit.entity.CraftPlayer;
import org.bukkit.event.entity.EntityDamageByEntityEvent;
import org.bukkit.event.player.PlayerTeleportEvent;
// CraftBukkit end
@@ -32,7 +31,7 @@ public class EntityEnderPearl extends EntityProjectile {
if (!entityplayer.netServerHandler.disconnected && entityplayer.world == this.world) {
// CraftBukkit start
CraftPlayer player = entityplayer.getBukkitEntity();
org.bukkit.craftbukkit.entity.CraftPlayer player = entityplayer.getBukkitEntity();
org.bukkit.Location location = getBukkitEntity().getLocation();
location.setPitch(player.getLocation().getPitch());
location.setYaw(player.getLocation().getYaw());