Todo removed from tank class since the shield is strong enough now

This commit is contained in:
Teriuihi 2025-03-01 01:16:39 +01:00
parent 5430af2149
commit afbd1a9f09

View File

@ -22,7 +22,7 @@ public class TankCreator {
private static final MiniMessage miniMessage = MiniMessage.miniMessage();
@Contract("_ -> new")
public static @NotNull GameClass createTank(@NotNull TeamColor teamColor) {//TODO add ability to become temp invulnerable (with some particle effects mayb?)
public static @NotNull GameClass createTank(@NotNull TeamColor teamColor) {
return new Tank(getArmor(), getTools(teamColor), getDisplayItem(teamColor),
30, 7, 4);
}