From a071735853849dd05c5c5430bf064b6aa8a1ada3 Mon Sep 17 00:00:00 2001 From: Sollace Date: Tue, 15 Aug 2023 23:18:59 +0100 Subject: [PATCH] Fixed the supermove check --- .../java/com/minelittlepony/unicopia/entity/player/Pony.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java b/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java index dd8f1645..b0e614ee 100644 --- a/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java +++ b/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java @@ -269,7 +269,7 @@ public class Pony extends Living implements Copyable, Update } public boolean canUseSuperMove() { - return getMagicalReserves().getCharge().get() >= getMagicalReserves().getCharge().get(); + return entity.isCreative() || getMagicalReserves().getCharge().get() >= getMagicalReserves().getCharge().getMax(); } public boolean consumeSuperMove() {