Skip to content

Commit 27532a2

Browse files
committed
Better wording
1 parent 67c8884 commit 27532a2

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# MMCUtils
2-
Utilities for Minemen Club
2+
Utilities for Minemen Club
33

44
# Features
5-
- Queues practice on join
6-
- Enter party chat on join
7-
- Darkens terracottas and wools at height limit
8-
- `/mmcutils` for config menu
5+
- **Auto Practice** - Go straight into practice once joined.
6+
- **Auto Party Chat** - Enter party chat once joined practice.
7+
- **Height Limit Overlay** - Make wools and terracottas darker at height limit.
8+
- **Height Limit Brightness** - Adjust the brightness of height limit overlay.
9+
10+
Type `/mmcutils` to configure.
11+
12+
# Requirements
13+
- Essential
14+
- OptiFine
15+
- Smooth Lighting: On

src/main/java/me/redth/mmcutils/Config.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313

1414
public class Config extends Vigilant {
1515

16-
@Property(type = PropertyType.SWITCH, name = "Auto Queue", category = "General", description = "Automatically queues your current proxy's practice server when connected.")
16+
@Property(type = PropertyType.SWITCH, name = "Auto Practice", category = "General", description = "Go straight into practice once joined.")
1717
public static boolean autoQueue = true;
1818

19-
@Property(type = PropertyType.SWITCH, name = "Auto Party Chat", category = "General", description = "Automatically enters party chat when connected.")
19+
@Property(type = PropertyType.SWITCH, name = "Auto Party Chat", category = "General", description = "Enter party chat once joined practice.")
2020
public static boolean autoPartyChat = true;
2121

22-
@Property(type = PropertyType.SWITCH, name = "Height Limit Overlay", category = "General", description = "Darkens wools and terracottas at height limit.")
22+
@Property(type = PropertyType.SWITCH, name = "Height Limit Overlay", category = "General", description = "Make wools and terracottas darker at height limit.")
2323
public static boolean heightLimitOverlay = true;
2424

25-
@Property(type = PropertyType.PERCENT_SLIDER, name = "Height Limit Brightness", category = "General", description = "How bright the blocks will be.")
25+
@Property(type = PropertyType.PERCENT_SLIDER, name = "Height Limit Brightness", category = "General", description = "Adjust the brightness of height limit overlay.")
2626
public static float heightLimitBrightness = 0.5F;
2727

2828
public Config() {

0 commit comments

Comments
 (0)