add comments to keys

This commit is contained in:
Ryder Belserion 2024-10-12 19:27:08 -04:00
parent 6e65292292
commit c9c1d7a2c3
No known key found for this signature in database

View File

@ -8,8 +8,16 @@ import org.jetbrains.annotations.NotNull;
@SuppressWarnings("rawtypes")
public enum Keys {
auction_item("auction_item", PersistentDataType.BOOLEAN),
// contains the store id
auction_id("auction_id", PersistentDataType.INTEGER),
// this contains, the number for the item which can be found in the data.yml
auction_item("auction_item", PersistentDataType.STRING),
// any button in the gui
auction_button("auction_button", PersistentDataType.STRING),
// contains the auction item price
auction_price("auction_price", PersistentDataType.INTEGER);
private final CrazyAuctions plugin = CrazyAuctions.getPlugin();