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

@ -1,15 +1,6 @@
minecraft:zombie,minecraft:overworld
minecraft:enderman,minecraft:end
minecraft:blaze,minecraft:nether
minecraft:cow,minecraft:overworld
minecraft:strider,minecraft:nether
minecraft:shulker,minecraft:end
minecraft:skeleton,minecraft:nether
minecraft:creeper,minecraft:overworld
minecraft:ghast,minecraft:nether
minecraft:phantom,minecraft:end
minecraft:piglin,minecraft:nether
minecraft:spider,minecraft:overworld
minecraft:wither_skeleton,minecraft:nether
minecraft:witch,minecraft:overworld
minecraft:guardian,minecraft:overworld
minecraft:zombie,minecraft:taiga,minecraft:overworld
minecraft:enderman,any,minecraft:end
minecraft:blaze,minecraft:soul_sand_valley,minecraft:nether
minecraft:cow,minecraft:plains,minecraft:overworld
minecraft:strider,minecraft:basalt_deltas,minecraft:nether
minecraft:shulker,minecraft:end_highlands,minecraft:end

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)