moved dev tools folder
This commit is contained in:
16
devtools/FormatRules.py
Normal file
16
devtools/FormatRules.py
Normal file
@ -0,0 +1,16 @@
|
||||
import pyperclip
|
||||
|
||||
x = ""
|
||||
|
||||
with open("MobDimSpawningRulesInput.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)
|
Reference in New Issue
Block a user