File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
leaves-api/src/main/java/org/leavesmc/leaves/plugin
leaves-server/src/main/java/org/leavesmc/leaves/plugin Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,6 @@ public class Features {
6
6
public static final String FAKEPLAYER = "fakeplayer" ;
7
7
public static final String PHOTOGRAPHER = "photographer" ;
8
8
public static final String RECORDER = "recorder" ;
9
+ public static final String BYTEBUF = "bytebuf" ;
10
+ public static final String UPDATE_SUPPRESSION_EVENT = "update_suppression_event" ;
9
11
}
Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ public class ServerFeatureManager implements FeatureManager {
13
13
private ServerFeatureManager () {
14
14
availableFeatures .addAll (Set .of (
15
15
FAKEPLAYER ,
16
- PHOTOGRAPHER
16
+ PHOTOGRAPHER ,
17
+ BYTEBUF ,
18
+ UPDATE_SUPPRESSION_EVENT
17
19
));
18
20
if (Boolean .getBoolean ("leavesclip.enable.mixin" )) {
19
21
availableFeatures .add (MIXIN );
You can’t perform that action at this time.
0 commit comments