minor changes

This commit is contained in:
B1G-FUNGUS 2021-10-04 20:28:45 -07:00
parent 45278c7dd1
commit 2554adbe02
2 changed files with 3 additions and 1 deletions

View File

@ -9,6 +9,8 @@ import org.bukkit.entity.Slime;
import org.bukkit.inventory.EntityEquipment;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.SkullMeta;
import org.bukkit.potion.PotionEffect;
import org.bukkit.potion.PotionEffectType;
import java.util.Random;
@ -38,6 +40,7 @@ public class FakePlayerRitual extends Ritual {
armorStand.setCustomName(caster.getName());
armorStand.setCustomNameVisible(true);
slime.setPassenger(armorStand);
slime.addPotionEffect(new PotionEffect(PotionEffectType.DAMAGE_RESISTANCE, 10*20, 50));
slime.setSize(1);
EntityEquipment equipment = armorStand.getEquipment();
ItemStack skull = new ItemStack(Material.SKULL_ITEM, 1, (short) 3);

View File

@ -22,7 +22,6 @@ public class LightningRitual extends Ritual {
@Override
public void execute(Player caster, Player target, Location location) {
// Does this actually get the overworld?
World world = location.getWorld();
List<Player> players = world.getPlayers();
for(Player player : players) {