Skip to content

Commit

Permalink
feat: 🎸 japanize変換の状態を保存するファイルの名前を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueSheep2804 committed Jul 19, 2023
1 parent d28c4d7 commit a28e13a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class JapanizePlayersManager(private val file: File) {
reload()
}
fun reload() {
val japanizeFile = File(file, "jp.yml")
val japanizeFile = File(file, "japanize.yml")
if (!file.exists()) {
file.mkdir()
}
Expand All @@ -28,7 +28,7 @@ class JapanizePlayersManager(private val file: File) {
japanizePlayers = Yaml.default.decodeFromStream(japanizePlayersSerializer, japanizeFileInputStream).toMutableMap()
}
fun save() {
val japanizeFile = File(file, "jp.yml")
val japanizeFile = File(file, "japanize.yml")
if (!file.exists()) {
file.mkdir()
}
Expand Down

0 comments on commit a28e13a

Please sign in to comment.