Skip to content

Commit

Permalink
Implementing known fix
Browse files Browse the repository at this point in the history
Changing print (k.. ": ".. v) to print(k.. ": ".. tostring(v))

 acidjazz#42
  • Loading branch information
Tomahawk101 authored Nov 20, 2021
1 parent 939d113 commit 3a0241e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drmon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function update()
end

for k, v in pairs (ri) do
print(k.. ": ".. v)
print(k.. ": ".. tostring(v))
end
print("Output Gate: ", fluxgate.getSignalLowFlow())
print("Input Gate: ", inputfluxgate.getSignalLowFlow())
Expand Down

0 comments on commit 3a0241e

Please sign in to comment.