use of net.minecraft.server.v1_13_R2.EntityPlayer in project MechanicsMain by WeaponMechanics.
the class Scope_1_15_R1 method removeNightVision.
@Override
public void removeNightVision(Player player) {
if (player.hasPotionEffect(PotionEffectType.NIGHT_VISION)) {
EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
// Simply remove the entity effect
PacketPlayOutRemoveEntityEffect removeEntityEffect = new PacketPlayOutRemoveEntityEffect(player.getEntityId(), MobEffectList.fromId(PotionEffectType.NIGHT_VISION.getId()));
entityPlayer.playerConnection.sendPacket(removeEntityEffect);
// resend the existing one
MobEffect mobEffect = entityPlayer.getEffect(MobEffectList.fromId(PotionEffectType.NIGHT_VISION.getId()));
PacketPlayOutEntityEffect entityEffect = new PacketPlayOutEntityEffect(player.getEntityId(), mobEffect);
((CraftPlayer) player).getHandle().playerConnection.sendPacket(entityEffect);
return;
}
// Simply remove the entity effect
PacketPlayOutRemoveEntityEffect removeEntityEffect = new PacketPlayOutRemoveEntityEffect(player.getEntityId(), MobEffectList.fromId(PotionEffectType.NIGHT_VISION.getId()));
((CraftPlayer) player).getHandle().playerConnection.sendPacket(removeEntityEffect);
}
use of net.minecraft.server.v1_13_R2.EntityPlayer in project FunnyGuilds by FunnyGuilds.
the class V1_10R1PacketAccessor method getOrInstallChannelHandler.
@Override
public FunnyGuildsChannelHandler getOrInstallChannelHandler(Player player) {
final EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
final Channel channel = entityPlayer.playerConnection.networkManager.channel;
final ChannelPipeline pipeline = channel.pipeline();
return this.channelHandlerInstaller.installChannelHandlerInPipeline(pipeline);
}
use of net.minecraft.server.v1_13_R2.EntityPlayer in project FunnyGuilds by FunnyGuilds.
the class V1_8R3PacketAccessor method getOrInstallChannelHandler.
@Override
public FunnyGuildsChannelHandler getOrInstallChannelHandler(Player player) {
final EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
final Channel channel = entityPlayer.playerConnection.networkManager.channel;
final ChannelPipeline pipeline = channel.pipeline();
return this.channelHandlerInstaller.installChannelHandlerInPipeline(pipeline);
}
use of net.minecraft.server.v1_13_R2.EntityPlayer in project FunnyGuilds by FunnyGuilds.
the class V1_13R2PacketAccessor method getOrInstallChannelHandler.
@Override
public FunnyGuildsChannelHandler getOrInstallChannelHandler(Player player) {
final EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
final Channel channel = entityPlayer.playerConnection.networkManager.channel;
final ChannelPipeline pipeline = channel.pipeline();
return this.channelHandlerInstaller.installChannelHandlerInPipeline(pipeline);
}
use of net.minecraft.server.v1_13_R2.EntityPlayer in project FunnyGuilds by FunnyGuilds.
the class V1_14R1PacketAccessor method getOrInstallChannelHandler.
@Override
public FunnyGuildsChannelHandler getOrInstallChannelHandler(Player player) {
final EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
final Channel channel = entityPlayer.playerConnection.networkManager.channel;
final ChannelPipeline pipeline = channel.pipeline();
return this.channelHandlerInstaller.installChannelHandlerInPipeline(pipeline);
}
Aggregations