diff --git a/.forgejo/scripts/update-wiki.py b/.forgejo/scripts/update-wiki.py index 4ee240b..e1e9f81 100644 --- a/.forgejo/scripts/update-wiki.py +++ b/.forgejo/scripts/update-wiki.py @@ -41,12 +41,17 @@ with open("wiki/Modlist.md", "w") as f: f.write("\r\n") f.write("Client") - f.write("" + str(count["client"] + count["both"]) + "") + f.write("" + str(count["client"]) + "") f.write("\r\n") f.write("\r\n") f.write("Server") - f.write("" + str(count["server"] + count["both"]) + "") + f.write("" + str(count["server"]) + "") + f.write("\r\n") + + f.write("\r\n") + f.write("Shared") + f.write("" + str(count["both"]) + "") f.write("\r\n") f.write("\r\n\r\n")