updated dev tools
This commit is contained in:
@ -1,15 +1,6 @@
|
|||||||
minecraft:zombie,minecraft:overworld
|
minecraft:zombie,minecraft:taiga,minecraft:overworld
|
||||||
minecraft:enderman,minecraft:end
|
minecraft:enderman,any,minecraft:end
|
||||||
minecraft:blaze,minecraft:nether
|
minecraft:blaze,minecraft:soul_sand_valley,minecraft:nether
|
||||||
minecraft:cow,minecraft:overworld
|
minecraft:cow,minecraft:plains,minecraft:overworld
|
||||||
minecraft:strider,minecraft:nether
|
minecraft:strider,minecraft:basalt_deltas,minecraft:nether
|
||||||
minecraft:shulker,minecraft:end
|
minecraft:shulker,minecraft:end_highlands,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
|
|
||||||
|
@ -6,9 +6,11 @@ with open("MobDimSpawningRules.txt", "r") as file:
|
|||||||
x+=file.read()
|
x+=file.read()
|
||||||
|
|
||||||
y=""
|
y=""
|
||||||
for i in x.split('\n'):
|
for i in x.split('\n')[:-1]:
|
||||||
y += str(i.split(",").__str__())+",\n"
|
y += str(i.split(",").__str__())+",\n"
|
||||||
|
|
||||||
|
y=y[:-2]
|
||||||
|
|
||||||
print(y)
|
print(y)
|
||||||
print("data copied to clipboard")
|
print("data copied to clipboard")
|
||||||
pyperclip.copy(y)
|
pyperclip.copy(y)
|
Reference in New Issue
Block a user