We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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))
print(k.. ": ".. v)
print(k.. ": ".. tostring(v))
This fixes the issue without breaking older versions
The text was updated successfully, but these errors were encountered:
Implementing known fix
3a0241e
Changing print (k.. ": ".. v) to print(k.. ": ".. tostring(v)) acidjazz#42
Create drmon.lua
b810b9e
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: