blob: 652a8bbd7b77670ff4a861176831e91939f99445 (
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.dungeon;
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 CleanEndConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "After the last Dungeon boss has died, all entities and " +
"particles are no longer displayed and the music stops playing, but the loot chests are still displayed.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigOption(name = "Ignore Guardians", desc = "Ignore F3 and M3 Guardians from the clean end feature when " +
"sneaking. Makes it easier to kill them after the boss dies. Thanks Hypixel.")
@ConfigEditorBoolean
public boolean F3IgnoreGuardians = false;
}
|