Skip to content

Commit

Permalink
oops forgot to make it work
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandra-Myers authored Jul 13, 2024
1 parent a006193 commit 3ed5f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/atlas/combatify/Combatify.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class Combatify implements ModInitializer {
public static final PrefixLogger LOGGER = new PrefixLogger(LogManager.getLogger("Combatify"));
public static final BlockingType SWORD = defineDefaultBlockingType(new SwordBlockingType("sword").setToolBlocker(true).setDisablement(false).setCrouchable(false).setBlockHit(true).setRequireFullCharge(false).setSwordBlocking(true).setDelay(false));
public static final BlockingType SHIELD = defineDefaultBlockingType(new ShieldBlockingType("shield"));
public static final BlockingType SHIELD_NO_BANNER = defineDefaultBlockingType(new ShieldBlockingType("shield_no_banner"));
public static final BlockingType SHIELD_NO_BANNER = defineDefaultBlockingType(new NonBannerShieldBlockingType("shield_no_banner"));
public static final BlockingType CURRENT_SHIELD = defineDefaultBlockingType(new CurrentShieldBlockingType("current_shield"));
public static final BlockingType NEW_SHIELD = defineDefaultBlockingType(new NewShieldBlockingType("new_shield").setKbMechanics(false));
public static final BlockingType EMPTY = new EmptyBlockingType("empty").setDisablement(false).setCrouchable(false).setRequireFullCharge(false).setKbMechanics(false);
Expand Down

0 comments on commit 3ed5f00

Please sign in to comment.