User Tools

Site Tools


tutorial:enchantments

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
tutorial:enchantments [2019/07/02 22:39] draylartutorial:enchantments [2020/05/10 11:37] – addPotionEffect -> addStatusEffect sirwindfield
Line 14: Line 14:
 public class FrostEnchantment extends Enchantment  public class FrostEnchantment extends Enchantment 
 { {
-    public WrathEnchantment(Weight weight, EnchantmentTarget target, EquipmentSlot[] slots)+    public FrostEnchantment(Weight weight, EnchantmentTarget target, EquipmentSlot[] slots)
     {     {
         super(weight, target, slots)         super(weight, target, slots)
Line 48: Line 48:
     if(target instanceof LivingEntity)     if(target instanceof LivingEntity)
     {     {
-        ((LivingEntity) target).addPotionEffect(new StatusEffectInstance(StatusEffects.SLOWNESS, 20 * 2 * level, level - 1));+        ((LivingEntity) target).addStatusEffect(new StatusEffectInstance(StatusEffects.SLOWNESS, 20 * 2 * level, level - 1));
     }     }
  
tutorial/enchantments.txt · Last modified: 2023/01/04 13:52 by datsuns