File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/com/jedk1/jedcore/ability Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 44
55 <groupId >com.jedk1</groupId >
66 <artifactId >jedcore</artifactId >
7- <version >2.7.0 -Spigot1.12.2-PK1.8.7</version >
7+ <version >2.7.1 -Spigot1.12.2-PK1.8.7</version >
88 <packaging >jar</packaging >
99 <name >JedCore</name >
1010
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public class Combustion extends CombustionAbility implements AddonAbility {
4141 public Combustion (Player player ) {
4242 super (player );
4343
44- if (!bPlayer .canBend (this ) || !bPlayer .canCombustionbend () || hasAbility (player , Combustion .class )) {
44+ if (this . player == null || !bPlayer .canBend (this ) || !bPlayer .canCombustionbend () || hasAbility (player , Combustion .class )) {
4545 return ;
4646 }
4747
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public class Bloodbending extends BloodAbility implements AddonAbility {
4545
4646 public Bloodbending (Player player ) {
4747 super (player );
48- if (!isEligible (player , true )) {
48+ if (this . player == null || !isEligible (player , true )) {
4949 return ;
5050 }
5151 setFields ();
You can’t perform that action at this time.
0 commit comments