Skip to content

Commit

Permalink
add comments to keys
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbelserion committed Oct 12, 2024
1 parent 6e65292 commit c9c1d7a
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,16 @@
@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();
Expand Down

0 comments on commit c9c1d7a

Please sign in to comment.