Skip to content

Commit

Permalink
Fix settings changes not being saved (closes #11878)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahvdAa committed Jan 1, 2025
1 parent 1dd52be commit e929d53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
Properties map = Settings.this.cloneProperties();
map.put(this.key, this.serializer.apply(newValue));
- return Settings.this.reload(registryAccess, map);
+ return Settings.this.reload(registryAccess, properties, Settings.this.options); // CraftBukkit
+ return Settings.this.reload(registryAccess, map, Settings.this.options); // CraftBukkit
}
}
}

0 comments on commit e929d53

Please sign in to comment.