Fix woosh ritual pt 3

This commit is contained in:
Henry Boles 2021-10-10 23:20:38 -07:00
parent 330e2f0839
commit 7865f8ad85

View File

@ -23,7 +23,7 @@ public class WooshRitual extends Ritual {
@Override @Override
public void execute(Player caster, Player target, Location location) { public void execute(Player caster, Player target, Location location) {
int y = 255; int y = 255;
while (location.getBlock().getRelative(0, y, 0).getType() != Material.AIR) { while (location.getBlock().getRelative(0, y, 0).getType() == Material.AIR) {
y--; y--;
} }
caster.teleport(location.getBlock().getRelative(0, y + 1, 0).getLocation()); caster.teleport(location.getBlock().getRelative(0, y + 1, 0).getLocation());