Remove TODO comment in TrapperCreator class.

The comment about adding temporary invulnerability was removed, it was meant for the tank class.
This commit is contained in:
Teriuihi 2025-02-28 23:12:45 +01:00
parent d56e8eaea5
commit ba8fbe83e0

View File

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