test
All checks were successful
Update wiki / test (push) Successful in 13s

This commit is contained in:
Ashley Graves 2024-07-28 22:41:17 +02:00
parent 03afdb17e5
commit 1bc8e2feb1

View file

@ -41,12 +41,17 @@ with open("wiki/Modlist.md", "w") as f:
f.write("\r\n<tr>") f.write("\r\n<tr>")
f.write("<td>Client</td>") f.write("<td>Client</td>")
f.write("<td>" + str(count["client"] + count["both"]) + "</td>") f.write("<td>" + str(count["client"]) + "</td>")
f.write("</tr>\r\n") f.write("</tr>\r\n")
f.write("\r\n<tr>") f.write("\r\n<tr>")
f.write("<td>Server</td>") f.write("<td>Server</td>")
f.write("<td>" + str(count["server"] + count["both"]) + "</td>") f.write("<td>" + str(count["server"]) + "</td>")
f.write("</tr>\r\n")
f.write("\r\n<tr>")
f.write("<td>Shared</td>")
f.write("<td>" + str(count["both"]) + "</td>")
f.write("</tr>\r\n") f.write("</tr>\r\n")
f.write("\r\n</table>\r\n") f.write("\r\n</table>\r\n")