Fix itemization ritual

This commit is contained in:
Edith Boles 2021-10-04 17:42:05 -07:00
parent e2f843de70
commit 3ad48605b3
2 changed files with 6 additions and 2 deletions

View File

@ -91,7 +91,7 @@ public final class Events implements Listener {
Collection<LivingEntity> sacrifices = block.getWorld().getEntitiesByClass(LivingEntity.class);
ArrayList<LivingEntity> near_sacrifices = new ArrayList<LivingEntity>();
for (Item item : items) {
if (item.getLocation().distance(location) < 2) {
if (item.getLocation().distance(location) < 3.5) {
near_items.add(item);
}
}

View File

@ -1,5 +1,7 @@
package top.penowl.quidproquo.rituals;
import org.apache.commons.lang.WordUtils;
import org.bukkit.ChatColor;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.entity.Player;
@ -20,13 +22,15 @@ public class RandomItemRitual extends Ritual {
addIngredient(Material.WHEAT, 16);
health = 2;
name = "itemization";
notify = false;
}
@Override
public void execute(Player caster, Player target, Location location) {
Material[] materials = Material.values();
Material item = materials[(int)(materials.length*Math.random())];
location.getWorld().dropItemNaturally(location.clone().add(0, 1, 0), new ItemStack(item, 1));
location.getWorld().dropItemNaturally(location.clone().add(0, 1, 0), new ItemStack(item, 8));
caster.sendMessage(ChatColor.YELLOW + "You summoned " + WordUtils.capitalizeFully(item.toString().replace("_", " ")) + "!");
}
}