Make block shift cooler

This commit is contained in:
Edith Boles 2021-10-04 18:35:45 -07:00
parent f30c9a1df8
commit 8cd9817e59

View File

@ -46,12 +46,18 @@ public class BlockShiftRitual extends Ritual {
Material fromMat = pMat[random.nextInt(pMat.length)]; Material fromMat = pMat[random.nextInt(pMat.length)];
Material toMat = pMat[random.nextInt(pMat.length)]; Material toMat = pMat[random.nextInt(pMat.length)];
Material chosenMat; Material chosenMat;
Material otherMaterial;
if (Math.random() > 0.5) { if (Math.random() > 0.5) {
chosenMat = fromMat; chosenMat = fromMat;
otherMaterial = toMat;
} else { } else {
chosenMat = toMat; chosenMat = toMat;
otherMaterial = fromMat;
}
target.sendMessage(ChatColor.YELLOW + "You sense that reality has shifted. You see " + ChatColor.GOLD + chosenMat.toString().replace("_", " ") + ChatColor.YELLOW + " in glowing letters.");
if (target.getUniqueId() != caster.getUniqueId()) {
caster.sendMessage(ChatColor.YELLOW + "You sense that reality has shifted. You hear " + ChatColor.GOLD + chosenMat.toString().replace("_", " ") + ChatColor.YELLOW + " in the distance.");
} }
target.sendMessage(ChatColor.YELLOW + "You sense that reality has shifted. You see " + chosenMat.toString().replace("_", " ") + " in glowing letters.");
Block block = target.getLocation().getBlock(); Block block = target.getLocation().getBlock();
for(int x = -12; x <= 12; x ++) { for(int x = -12; x <= 12; x ++) {
for(int y = -12; y <= 12; y ++) { for(int y = -12; y <= 12; y ++) {