15 jan 2026

This commit is contained in:
2026-01-17 02:45:21 +01:00
parent 750f067b75
commit ef57ca68e0
3 changed files with 92 additions and 256 deletions

View File

@@ -45,7 +45,11 @@ for line in lines:
continue
# {{ShipDisplay|6|Gouden Leeuw|CV|Maid|An Intimate Cleaning |{{Gem}} 1|L2D+|142}}
_, _, name, _, category, skin, _, _, _ = line.split("|")
try:
_, _, name, _, category, skin, _, _, _, _ = line.split("|")
except:
print(line.split("|"))
exit()
name = name.strip()
skin = skin.strip()