From 7cebc21431dacb04f0f8b44f0fbc057add7edba5 Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 18 May 2025 13:44:17 -0500 Subject: [PATCH] moved dev tools folder --- .../devtools/test.py => devtools/FormatRules.py | 4 ++-- .../MobDimSpawningRulesInput.txt | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename 1.20.1-FearFactoryTest/devtools/test.py => devtools/FormatRules.py (70%) rename 1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt => devtools/MobDimSpawningRulesInput.txt (100%) diff --git a/1.20.1-FearFactoryTest/devtools/test.py b/devtools/FormatRules.py similarity index 70% rename from 1.20.1-FearFactoryTest/devtools/test.py rename to devtools/FormatRules.py index e70e1ea..6f9e3e8 100644 --- a/1.20.1-FearFactoryTest/devtools/test.py +++ b/devtools/FormatRules.py @@ -2,7 +2,7 @@ import pyperclip x = "" -with open("MobDimSpawningRules.txt", "r") as file: +with open("MobDimSpawningRulesInput.txt", "r") as file: x+=file.read() y="" @@ -13,4 +13,4 @@ y=y[:-2] print(y) print("data copied to clipboard") -pyperclip.copy(y) \ No newline at end of file +pyperclip.copy(y) diff --git a/1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt b/devtools/MobDimSpawningRulesInput.txt similarity index 100% rename from 1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt rename to devtools/MobDimSpawningRulesInput.txt