blob: 930316beea4e4fef48f9ac4f3b601a101a8b3499 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package io.github.moulberry.notenoughupdates.options.seperateSections;
import com.google.gson.annotations.Expose;
import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigEditorBoolean;
import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigOption;
public class TradeMenu {
@Expose
@ConfigOption(
name = "Enable Custom Trade Menu",
desc = "When trading with other players in skyblock, display a special GUI designed to prevent scamming"
)
@ConfigEditorBoolean
public boolean enableCustomTrade = true;
@Expose
@ConfigOption(
name = "Price Information",
desc = "Show the price of items in the trade window on both sides"
)
@ConfigEditorBoolean
public boolean customTradePrices = true;
@Expose
public boolean customTradePriceStyle = true;
}
|