blob: c0a6e3e508592e56e9a23a78257bb7b23c39c50c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package at.hannibal2.skyhanni.config.features.mining;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class MineshaftConfig {
@Expose
@ConfigOption(
name = "Profit Per Corpse",
desc = "Show profit/loss in chat after each looted corpse in the Mineshaft. Also includes breakdown information on hover."
)
@ConfigEditorBoolean
@FeatureToggle
public boolean profitPerCorpseLoot = true;
}
|