minor changes
This commit is contained in:
parent
45278c7dd1
commit
2554adbe02
@ -9,6 +9,8 @@ import org.bukkit.entity.Slime;
|
|||||||
import org.bukkit.inventory.EntityEquipment;
|
import org.bukkit.inventory.EntityEquipment;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.bukkit.inventory.meta.SkullMeta;
|
import org.bukkit.inventory.meta.SkullMeta;
|
||||||
|
import org.bukkit.potion.PotionEffect;
|
||||||
|
import org.bukkit.potion.PotionEffectType;
|
||||||
|
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
@ -38,6 +40,7 @@ public class FakePlayerRitual extends Ritual {
|
|||||||
armorStand.setCustomName(caster.getName());
|
armorStand.setCustomName(caster.getName());
|
||||||
armorStand.setCustomNameVisible(true);
|
armorStand.setCustomNameVisible(true);
|
||||||
slime.setPassenger(armorStand);
|
slime.setPassenger(armorStand);
|
||||||
|
slime.addPotionEffect(new PotionEffect(PotionEffectType.DAMAGE_RESISTANCE, 10*20, 50));
|
||||||
slime.setSize(1);
|
slime.setSize(1);
|
||||||
EntityEquipment equipment = armorStand.getEquipment();
|
EntityEquipment equipment = armorStand.getEquipment();
|
||||||
ItemStack skull = new ItemStack(Material.SKULL_ITEM, 1, (short) 3);
|
ItemStack skull = new ItemStack(Material.SKULL_ITEM, 1, (short) 3);
|
||||||
|
@ -22,7 +22,6 @@ public class LightningRitual extends Ritual {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void execute(Player caster, Player target, Location location) {
|
public void execute(Player caster, Player target, Location location) {
|
||||||
// Does this actually get the overworld?
|
|
||||||
World world = location.getWorld();
|
World world = location.getWorld();
|
||||||
List<Player> players = world.getPlayers();
|
List<Player> players = world.getPlayers();
|
||||||
for(Player player : players) {
|
for(Player player : players) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user