Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit a521e55

Browse files
committed
no explodey protections
1 parent 5600929 commit a521e55

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/me/simplicitee/project/addons/ability/fire/CombustBeam.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,10 @@ public void progress() {
201201

202202
public void explode() {
203203
if (!charging) {
204+
if (GeneralMethods.isRegionProtectedFromBuild(player, curr)) {
205+
return;
206+
}
207+
204208
player.getWorld().createExplosion(curr, (float) power, true);
205209

206210
for (Entity e : GeneralMethods.getEntitiesAroundPoint(curr, power)) {

0 commit comments

Comments
 (0)