deprecate invalid kittypes

This commit is contained in:
ThatGamerBlue
2021-05-17 06:27:50 +01:00
parent 829f0b134b
commit 7eb96d606a
3 changed files with 14 additions and 1 deletions

View File

@@ -51,7 +51,10 @@ public enum KitType
HANDS("Hands"),
BOOTS("Boots"),
JAW("Jaw"),
// When removing these, make sure you also remove the type.ordinal() > 11 checks in RSPlayerCompositionMixin
@Deprecated(since = "4.6.2", forRemoval = true)
RING("Ring"),
@Deprecated(since = "4.6.2", forRemoval = true)
AMMUNITION("Ammo");
private final String name;