This commit is contained in:
2025-05-18 15:25:45 -05:00
5 changed files with 69 additions and 2 deletions

View File

@ -1,6 +0,0 @@
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

@ -1,16 +0,0 @@
import pyperclip
x = ""
with open("MobDimSpawningRules.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)