Merge branch 'main' of github.com:PenguinOwl/QuidProQuo
This commit is contained in:
commit
d88c3a062c
@ -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);
|
||||
|
@ -17,7 +17,7 @@ public class KickingRitual extends Ritual {
|
||||
health = 3;
|
||||
name = "kicking";
|
||||
backfire = 0.4;
|
||||
description = "Kick your enemy from the server!";
|
||||
description = "ADMIN ABUSE!";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user