Skip to content

Commit 8a148a9

Browse files
committed
Remove debug
1 parent 2839cca commit 8a148a9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

common/src/main/java/com/lunarclient/apollo/module/modsettings/ModSettingsModuleImpl.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private void handleConfiguration(ApolloPlayer player, Any any) {
9898
continue;
9999
}
100100

101-
this.updateOptions(player, setting.getPropertiesMap(), false);
101+
this.updateOptions(player, setting.getPropertiesMap(), true);
102102
}
103103
}
104104

@@ -113,7 +113,6 @@ private void handleConfiguration(ApolloPlayer player, Any any) {
113113
*/
114114
public void updateOptions(ApolloPlayer player, Map<String, Value> properties, boolean callEvent) {
115115
StatusOptionsImpl statusOptions = ApolloManager.getModsManager().getPlayerOptions();
116-
System.out.println("Update options: " + properties.size());
117116

118117
for (Map.Entry<String, Value> entry : properties.entrySet()) {
119118
Option<?, ?, ?> option = statusOptions.getRegistry().get(entry.getKey());
@@ -124,7 +123,6 @@ public void updateOptions(ApolloPlayer player, Map<String, Value> properties, bo
124123
);
125124

126125
statusOptions.set(player, option, unwrappedValue);
127-
System.out.println("Set: " + option.getKey() + "=" + unwrappedValue);
128126

129127
if (callEvent) {
130128
EventBus.EventResult<ApolloUpdateModOptionEvent> eventResult = EventBus.getBus()

0 commit comments

Comments
 (0)