You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+15-4
Original file line number
Diff line number
Diff line change
@@ -9,20 +9,31 @@ Fixes errors such as `Unknown structure start: <missing structure>`, `Failed to
9
9
# Usage
10
10
11
11
1. Install the requirements: [Python 3.x](https://www.python.org/) and [Matcool's Anvil Parser](https://github.com/matcool/anvil-parser).
12
-
2. Place main.py in a folder with your world folder.
12
+
2. Place main.py in the same directory as your world folder.
13
13
3. Run main.py, and instruct it as to which structure tag you wish to remove. I recommend using [NBTExplorer](https://github.com/jaquadro/NBTExplorer) to find the name.
14
+
- -h For help on command line arguments.
15
+
- -t For the tag you want removed, in quotes.
16
+
- -j For the number of threads you want to run it on (default 4).
17
+
Example:
18
+
```
19
+
python main.py -t "Better Mineshaft" -j 8
20
+
```
14
21
4. Let it run.
15
22
5. Replace the contents of your region folder with the contents of new_region.
16
23
17
24
# Todo:
18
25
19
26
-[x] More detailed output.
20
-
-[ ] Multiple tag input.
21
-
-[ ] Optimizations (Multithreading?).
27
+
-[ ] Multiple tag input. (In progress)
28
+
-[x] Multithreading. (Thanks DemonInTheCloset!, now 2.8x faster)
29
+
-[x] Command line arguments. (Thanks DemonInTheCloset)
22
30
-[ ] Selection of world/dimensions.
23
31
-[ ] Allow for picking up progress where program left off.
32
+
-[ ] Checking disk space available.
33
+
-[ ] Auto-removal of all non vanilla structures mode.
24
34
25
35
# Notes:
26
36
27
-
- I have only tested this with 1.16.5 worlds.
37
+
- I have only tested this with 1.16 worlds.
28
38
- Feel free to message me on twitter if you need help using it.
39
+
- With large worlds, it may take a while to process, also depends on your hardware.
0 commit comments