blob: 107931dbe6640fb573c6062826d8a9bd1a49f209 (
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
28
29
30
31
32
|
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 Notifications {
@Expose
@ConfigOption(
name = "Update Messages",
desc = "Give a notification in chat whenever a new version of NEU is released"
)
@ConfigEditorBoolean
public boolean showUpdateMsg = true;
@Expose
@ConfigOption(
name = "RAM Warning",
desc = "Warning when game starts with lots of RAM allocated\n" +
"\u00a7cBefore disabling this, please seriously read the message. If you complain about FPS issues without listening to the warning, that's your fault."
)
@ConfigEditorBoolean
public boolean doRamNotif = true;
/*@Expose
@ConfigOption(
name = "Wrong Pet",
desc = "Gives a notification in chat whenever you're using a pet that doesnt match the same xp you're gathering."
)
@ConfigEditorBoolean
public boolean showWrongPetMsg = false;*/
}
|