Skip to content

Commit

Permalink
fixed composter data collection
Browse files Browse the repository at this point in the history
  • Loading branch information
hannibal002 committed Oct 1, 2024
1 parent 649dc53 commit e304c8f
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -639,20 +639,20 @@ object ComposterOverlay {
add("currentOrganicMatterItem: $currentOrganicMatterItem")
add("currentFuelItem: $currentFuelItem")

println(" ")
add(" ")
val composterUpgrades = ComposterAPI.composterUpgrades
if (composterUpgrades == null) {
println("composterUpgrades is null")
add("composterUpgrades is null")
} else {
for ((a, b) in composterUpgrades) {
println("upgrade $a: $b")
add("upgrade $a: $b")
}
}

println(" ")
add(" ")
val tabListData = ComposterAPI.tabListData
for ((a, b) in tabListData) {
println("tabListData $a: $b")
add("tabListData $a: $b")
}
}
}
Expand Down

0 comments on commit e304c8f

Please sign in to comment.