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

This commit is contained in:
Ashley Graves 2024-07-28 22:42:02 +02:00
parent 1bc8e2feb1
commit e452922f41

View file

@ -39,21 +39,21 @@ with open("wiki/Modlist.md", "w") as f:
f.write("<th>Count</th>") f.write("<th>Count</th>")
f.write("</tr>\r\n") f.write("</tr>\r\n")
f.write("\r\n<tr>") f.write("<tr>")
f.write("<td>Shared</td>")
f.write("<td>" + str(count["both"]) + "</td>")
f.write("</tr>\r\n")
f.write("<tr>")
f.write("<td>Client</td>") f.write("<td>Client</td>")
f.write("<td>" + str(count["client"]) + "</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("<tr>")
f.write("<td>Server</td>") f.write("<td>Server</td>")
f.write("<td>" + str(count["server"]) + "</td>") f.write("<td>" + str(count["server"]) + "</td>")
f.write("</tr>\r\n") 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("\r\n</table>\r\n") f.write("\r\n</table>\r\n")
f.write("## Individual Mods\r\n") f.write("## Individual Mods\r\n")