Files
FearFactory/1.20.1-FearFactoryTest/devtools/test.py
2025-05-17 21:51:07 -05:00

16 lines
245 B
Python

import pyperclip
x = ""
with open("MobDimSpawningRules.txt", "r") as file:
x+=file.read()
y=""
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)