Skip to content

Commit 2bbb3fc

Browse files
committed
Make global options protected
1 parent f752eb2 commit 2bbb3fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/com/lunarclient/apollo/option/OptionsImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class OptionsImpl implements Options {
5353
@Getter
5454
protected final Map<String, Option<?, ?, ?>> registry = new HashMap<>();
5555

56-
private final Map<String, Object> options = Collections.synchronizedMap(new HashMap<>());
56+
protected final Map<String, Object> options = Collections.synchronizedMap(new HashMap<>());
5757

5858
@Getter
5959
protected final Map<UUID, Map<String, Object>> playerOptions = Collections.synchronizedMap(new HashMap<>());

0 commit comments

Comments
 (0)