Executed Python script to shift temple Y values up by 2 and deleted script
This commit is contained in:
parent
9be940ee6c
commit
030e6e6caa
File diff suppressed because it is too large
Load Diff
@ -1,13 +0,0 @@
|
||||
in_lines = open('graveyard_world.yml').read().splitlines()
|
||||
out_lines = []
|
||||
|
||||
for line in in_lines:
|
||||
if line[:6] == " Y:":
|
||||
parts = line.split(': ')
|
||||
parts[1] = str(int(parts[1]) + 2)
|
||||
out_lines.append(': '.join(parts) + '\n')
|
||||
else:
|
||||
out_lines.append(line + '\n')
|
||||
|
||||
out_file = open('graveyard_world_new.yml', 'w')
|
||||
out_file.writelines(out_lines)
|
Loading…
Reference in New Issue
Block a user