- Airburst no longer triggers doors/buttons/levers

This commit is contained in:
savior67 2016-02-15 22:17:43 -05:00
parent 81bcfa9867
commit a04409123c

View file

@ -104,6 +104,10 @@ public class AirBlast extends AirAbility {
this.pushFactor *= modifiedPushFactor;
this.affectedLevers = new ArrayList<>();
this.affectedEntities = new ArrayList<>();
//prevent the airburst related airblasts from triggering doors/levers/buttons
this.canOpenDoors = false;
this.canPressButtons = false;
this.canFlickLevers = false;
start();
}