Skip to content

Commit

Permalink
fix: config 로드 key 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Cosine-A committed Feb 25, 2024
1 parent 0508a6f commit 25d7cc6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class FishConfig(
val itemStack = config.getItemStack("item")!!
val chance = config.getDouble("chance")
val weather = Weather.valueOf(config.getString("weather") ?: "ALL")
val biomes = config.getStringList("biome").map { Biome.valueOf(it) }
val biomes = config.getStringList("biomes").map { Biome.valueOf(it) }
val tick = config.getLong("tick")
val minTime = config.getInt("time.min")
val maxTime = config.getInt("time.max")
Expand Down

0 comments on commit 25d7cc6

Please sign in to comment.