updated dev tools

This commit is contained in:
2025-05-17 21:51:07 -05:00
parent ab63f6bcb4
commit 8506df78fd
2 changed files with 9 additions and 16 deletions

View File

@ -6,9 +6,11 @@ with open("MobDimSpawningRules.txt", "r") as file:
x+=file.read()
y=""
for i in x.split('\n'):
for i in x.split('\n')[:-1]:
y += str(i.split(",").__str__())+",\n"
y=y[:-2]
print(y)
print("data copied to clipboard")
pyperclip.copy(y)