mirror of
https://github.com/Crazy-Crew/CrazyAuctions.git
synced 2024-11-25 12:25:20 +01:00
add comments to keys
This commit is contained in:
parent
6e65292292
commit
c9c1d7a2c3
@ -8,8 +8,16 @@ import org.jetbrains.annotations.NotNull;
|
|||||||
@SuppressWarnings("rawtypes")
|
@SuppressWarnings("rawtypes")
|
||||||
public enum Keys {
|
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),
|
auction_button("auction_button", PersistentDataType.STRING),
|
||||||
|
|
||||||
|
// contains the auction item price
|
||||||
auction_price("auction_price", PersistentDataType.INTEGER);
|
auction_price("auction_price", PersistentDataType.INTEGER);
|
||||||
|
|
||||||
private final CrazyAuctions plugin = CrazyAuctions.getPlugin();
|
private final CrazyAuctions plugin = CrazyAuctions.getPlugin();
|
||||||
|
Loading…
Reference in New Issue
Block a user