Skip to content

Commit

Permalink
baller
Browse files Browse the repository at this point in the history
  • Loading branch information
firef1a committed Jun 5, 2024
1 parent f029d86 commit 1fa9ffd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/dev/fire/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,9 @@ private ConfigCategory.Builder specialChatTags() {

public enum CharSetOption {
ISO_8859_1(StandardCharsets.ISO_8859_1),
UTF_16(StandardCharsets.UTF_16),
UTF_16BE(StandardCharsets.UTF_16BE),
UTF_16LE(StandardCharsets.UTF_16LE),
UTF_8(StandardCharsets.UTF_8);

public final Charset charSet;
Expand Down

0 comments on commit 1fa9ffd

Please sign in to comment.