fix: add HUD category, don't mention gamma mode
This commit is contained in:
parent
b63303267d
commit
952ba637eb
2 changed files with 2 additions and 1 deletions
|
@ -13,6 +13,7 @@ import static co.fantabos.bscv.BoSCoVicino.log;
|
||||||
public abstract class Module {
|
public abstract class Module {
|
||||||
public enum Group {
|
public enum Group {
|
||||||
CORE,
|
CORE,
|
||||||
|
HUD,
|
||||||
BUILD,
|
BUILD,
|
||||||
DEFENSE,
|
DEFENSE,
|
||||||
VISION,
|
VISION,
|
||||||
|
|
|
@ -21,7 +21,7 @@ public class Fullbright extends Module {
|
||||||
super("Fullbright", Group.VISION, builder, dispatcher);
|
super("Fullbright", Group.VISION, builder, dispatcher);
|
||||||
|
|
||||||
this.mode = this.option(
|
this.mode = this.option(
|
||||||
"mode", "either potion or gamma", "potion",
|
"mode", "either potion or potion", "potion",
|
||||||
StringArgumentType.string(), String.class,
|
StringArgumentType.string(), String.class,
|
||||||
builder, dispatcher
|
builder, dispatcher
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue