acidjazz / drmon

Draconic Reactor computercraft monitoring and failsafe interface
60 stars 84 forks source link

can't print boolean variable v (line 178 of drmon.lua) #42

Open rednas174 opened 2 years ago

rednas174 commented 2 years ago

In my Minecraft server (FTB-revelations), I tried this program and it gave the error that on line 178, it can't print the boolean variable "v".

A fix for this is to change (on line 178 of drmon.lua): print(k.. ": ".. v) to print(k.. ": ".. tostring(v))

This fixes the issue without breaking older versions