Skip to content
New issue

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

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

Open
rednas174 opened this issue Sep 10, 2021 · 0 comments
Open

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

rednas174 opened this issue Sep 10, 2021 · 0 comments

Comments

@rednas174
Copy link

rednas174 commented Sep 10, 2021

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

@rednas174 rednas174 changed the title can't print boolean variable v (line 178) can't print boolean variable v (line 178 of drmon.lua) Sep 10, 2021
Tomahawk101 added a commit to Tomahawk101/drmon that referenced this issue Nov 20, 2021
Changing print (k.. ": ".. v) to print(k.. ": ".. tostring(v))

 acidjazz#42
Tomahawk101 added a commit to Tomahawk101/drmon that referenced this issue Nov 20, 2021
Changing print (k.. ": ".. v) to print(k.. ": ".. tostring(v))

 acidjazz#42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant