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
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