diff --git a/1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt b/1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt index a1991b0..6de9e94 100644 --- a/1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt +++ b/1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt @@ -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 diff --git a/1.20.1-FearFactoryTest/devtools/test.py b/1.20.1-FearFactoryTest/devtools/test.py index 22e5aaf..e70e1ea 100644 --- a/1.20.1-FearFactoryTest/devtools/test.py +++ b/1.20.1-FearFactoryTest/devtools/test.py @@ -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) \ No newline at end of file