Skip to content

Commit 11f8ea3

Browse files
committed
Updated to BLC 3.0
1 parent 91d8e05 commit 11f8ea3

File tree

3 files changed

+35
-2
lines changed
  • blcmodapibukkit/src/main/java/net/badlion/blcmodapibukkit
  • blcmodapibungee/src/main/java/net/badlion/blcmodapibungee

3 files changed

+35
-2
lines changed

blcmodapibukkit/src/main/java/net/badlion/blcmodapibukkit/Conf.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ private class DisallowedMods {
1818

1919
private boolean disabled;
2020
private JsonObject extra_data;
21+
private JsonObject settings;
2122

2223
}
2324

blcmodapibungee/src/main/java/net/badlion/blcmodapibungee/Conf.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ private class DisallowedMods {
1818

1919
private boolean disabled;
2020
private JsonObject extra_data;
21+
private JsonObject settings;
2122

2223
}
2324

readme.md

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,27 @@ You need to specify that your server allows it using this API, like in this exam
8080
}
8181
```
8282

83+
#### AutoText command whitelist
84+
85+
Instead of disabling the AutoText mod, you can specify a list of commands that you want to allow.
86+
Below is an example which allows the use of a few commands:
87+
88+
```json
89+
{
90+
"modsDisallowed": {
91+
"AutoText": {
92+
"disabled": false,
93+
"settings": {
94+
"whitelistedCommands": [
95+
"/warp",
96+
"/help"
97+
]
98+
}
99+
}
100+
}
101+
}
102+
```
103+
83104
### Mod Names and Fields that can be disabled
84105

85106
+ Animations
@@ -96,6 +117,7 @@ You need to specify that your server allows it using this API, like in this exam
96117
+ fishingRod
97118
+ swordSwing
98119
+ bowAnimation
120+
+ alwaysSwing
99121
+ ArmorStatus
100122
+ showMaxDurability
101123
+ showPercentage
@@ -104,11 +126,13 @@ You need to specify that your server allows it using this API, like in this exam
104126
+ leggingPiece
105127
+ chestPiece
106128
+ helmetPiece
129+
+ offHandPiece
107130
+ AutoFriend
108131
+ AutoGG
109132
+ AutoText
110133
+ AutoTip
111134
+ Block Overlay
135+
+ BlockInfo
112136
+ BossBar
113137
+ Chat
114138
+ textBackgroundShadow
@@ -142,7 +166,6 @@ You need to specify that your server allows it using this API, like in this exam
142166
+ CPS
143167
+ reversed
144168
+ showDecimal
145-
+ textModShowPrefix
146169
+ Crosshair
147170
+ visibleHideGui
148171
+ visibleDebugScreen
@@ -156,6 +179,7 @@ You need to specify that your server allows it using this API, like in this exam
156179
+ outline
157180
+ dot
158181
+ vanillaBlendering
182+
+ Custom Fonts
159183
+ Direction
160184
+ EnchantGlint
161185
+ FOV Changer
@@ -179,10 +203,13 @@ You need to specify that your server allows it using this API, like in this exam
179203
+ xporbHitboxesEnabled
180204
+ InventoryBlur
181205
+ Item Counter
206+
+ Item Info
182207
+ Item Physics
183-
+ ItemInfo
208+
+ Item Tracker
209+
+ JustEnoughItems
184210
+ Keystrokes
185211
+ LevelHead
212+
+ Light Overlay
186213
+ Memory
187214
+ MiniMap
188215
+ MLG Cobweb
@@ -191,6 +218,7 @@ You need to specify that your server allows it using this API, like in this exam
191218
+ Music
192219
+ Name History
193220
+ NickHider
221+
+ NotEnoughUpdates
194222
+ Notifications
195223
+ Pack Display
196224
+ Particles
@@ -199,6 +227,7 @@ You need to specify that your server allows it using this API, like in this exam
199227
+ Player Counter
200228
+ PotionStatus
201229
+ Protection
230+
+ Quickplay
202231
+ Reach Display
203232
+ Replay
204233
+ Saturation
@@ -221,4 +250,6 @@ You need to specify that your server allows it using this API, like in this exam
221250
+ ToggleSprint
222251
+ flySpeed
223252
+ Waypoints
253+
+ WeatherChanger
254+
+ World Edit CUI
224255
+ Zoom

0 commit comments

Comments
 (0)