Fixed exploited end crystals logging phantom fire data (#164)

This commit is contained in:
Intelli 2022-03-08 11:59:39 -07:00
parent 96292c82c3
commit 829f4e95d5
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,9 @@ public final class BlockIgniteListener extends Queue implements Listener {
}
}
}
else if (event.getCause() == IgniteCause.ENDER_CRYSTAL && blockBelow == Material.AIR) {
return;
}
}
BlockState replacedBlock = null;