blob: e613b013b38f79b9fe961f83f762795c9bd924f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package at.hannibal2.skyhanni.config.features.misc;
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.ConfigEditorSlider;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class LastServersConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Receive notifications when you rejoin a server you were in previously.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigOption(name = "Notification Time", desc = "Get notified if you rejoin a server within the specified number of seconds.")
@ConfigEditorSlider(minValue = 5, maxValue = 300, minStep = 1)
public int warnTime = 60;
}
|