remove mumble channel count being divided by 10 (#12)

I don't understand why it is divided by 10... Anyway, I removed this.

Co-authored-by: muppeth <muppeth@no-reply@disroot.org>
Reviewed-on: #12
Reviewed-by: muppeth <muppeth@no-reply@disroot.org>
This commit is contained in:
meaz 2023-11-28 20:18:19 +00:00
parent fd88759904
commit d7ac6baf3c
1 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ if (sys.argv[1:]):
print('bancount.label Bans on server')
if show_channel_count:
print('channelcount.label Channel count/10')
print('channelcount.label Channel')
if show_uptime:
print('uptime.label Uptime in days')
@ -181,7 +181,7 @@ if show_ban_count:
print("bancount.value %i" % (len(server.getBans())))
if show_channel_count:
print("channelcount.value %.1f" % (len(server.getChannels())/10))
print("channelcount.value %i" % (len(server.getChannels())))
if show_uptime:
print("uptime.value %.2f" % (float(meta.getUptime())/60/60/24))