Getting to the way it's supposed to be!

This commit is contained in:
2024-10-12 00:43:51 +02:00
parent 84729f9d27
commit 8f2dad9cec
2663 changed files with 540071 additions and 14 deletions

View File

@@ -0,0 +1,16 @@
import os
index = 0
for f in os.listdir("."):
if not f.endswith(".mcx"): continue
if f.startswith("fuzz_"):
index = max(index, int(f[5:-4]))
print(index)
for f in os.listdir("."):
if f.endswith(".py"): continue
if not f.startswith("fuzz_"):
index += 1
name = f"fuzz_{index:04}.mcx"
os.rename(f, name)