return;
inLocation = event.getSpawnLocation();
WorldServer worldServer = ((CraftWorld)inLocation.getWorld()).getHandle();
UUID uuid = UUID.nameUUIDFromBytes(("NPC:" + this.getID() + this.getName()).getBytes(Charsets.UTF_8));
GameProfile profile = new GameProfile(uuid.toString().replaceAll("-", ""), this.getName());
this.m_entity = new RemotePlayerEntity(worldServer.getMinecraftServer(), worldServer, profile, new PlayerInteractManager(worldServer), this);
worldServer.addEntity(m_entity);
this.m_entity.world.players.remove(this.m_entity);
Player player = this.getBukkitEntity();
if(player != null)