mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 15:17:59 +01:00
Fixed the supermove check
This commit is contained in:
parent
3b16930e3b
commit
a071735853
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ public class Pony extends Living<PlayerEntity> implements Copyable<Pony>, Update
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean canUseSuperMove() {
|
public boolean canUseSuperMove() {
|
||||||
return getMagicalReserves().getCharge().get() >= getMagicalReserves().getCharge().get();
|
return entity.isCreative() || getMagicalReserves().getCharge().get() >= getMagicalReserves().getCharge().getMax();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean consumeSuperMove() {
|
public boolean consumeSuperMove() {
|
||||||
|
|
Loading…
Reference in a new issue